kotlin 1.2.10 jackson-module-kotlin:2.9.0
I have the following data class in kotlin:
data class CurrencyInfo(
@JsonProperty(\"currency_info\"
I faced this problem today and what I did was register KotlinModule() in my ObjectMapper(). Bellows follow an example.
@Bean fun objectMapper = ObjectMapper().registreModule(KotlinModule())
Above it's a dummy objectMapper, I believe that you should put other configurations in your objectMapper like serializers and so on