Use this tag only for questions specifically related to version 2 of the Jackson library
I have configured my Spring Boot application to serialize dates as ISO8601 strings: spring: jackson: serialization: write-dates-as-timestamps: false This is …
spring spring-mvc spring-boot jackson jackson2It is possible to deserialize to a class with private fields and a custom argument constructor without using annotations and …
java json jackson jackson2 jackson-databindI am trying to use the @JsonIdentityInfo from Jackson 2 as described here. For testing purposes I created the following two …
java json jackson circular-reference jackson2I have a 'Example' Pojo class as mentioned below. Can any one tel to save instance of Example class to …
java jackson yaml jackson2 jackson-modulesI'm using Jackson 2.8 and need to communicate with an API that doesn't allow milliseconds within ISO 8601 timestamps. The expected format …
java jackson java-time jackson-modules jackson2I am getting below exception during deserialization , the guest profile is a nested object within the Root object (few levels …
jackson jackson-modules jackson2 jackson-databindI'm saving the dates on my database without timestamp, so I want to standarize the way the dates are received …
java spring-mvc spring-boot java-time jackson2I am using RestTemplate get data from remote rest service and my code is like this. ResponseEntity<List<…
spring-boot resttemplate jackson2