Posts by Elias Meireles • 99 points
1 post
-
-1
votes2
answers3560
viewsA: How to fix the error: cannot deserialize from Object value (no delegate- or Property-based Creator) using Spring Boot?
I’ve had this problem with Kotlin and fixed it using the code below. @Configuration open class JacksonMapper { @Bean open fun mapper(): ObjectMapper { val mapper = ObjectMapper() ...…