I\'m working on converting some models in a spring-boot REST API app to use java 8\'s java.time.LocalDateTime instead of joda\'s DateTime. I want the t
The error occurs because you mix versions of Jackson. You are using version 1.3.6.RELEASE of Spring Boot. If you would migrate to Spring Boot version 2.x.x.RELEASE then you can replace the com.fasterxml.jackson.datatype dependency by a spring-boot-starter-json dependency. In this way you let Spring Boot take care of the correct Jackson version.
org.springframework.boot
spring-boot-starter-json