Tag: jackson
All the articles with the tag "jackson".
-
Fine-grained Jackson configuration in Spring Boot 4.1
Spring Boot 4.1 adds dedicated spring.jackson.read.* and spring.jackson.write.* properties so you can control serialization and deserialization separately without touching Java code. Here's what changed and how to use it.
-
Deserialize json with Java parameterized constructor
In this blog post we are going to learn how to deserialize json into Java class which doesn't have default constructor.
-
JSON deserialize generic types using Gson and Jackson
In this blog post we are going to learn how to deserialize json into java generic types.