Compare JSON Objects with Jackson Jackson is one of the most used libraries for comparing JSON objects. Many times, we need to…
Data Binding
-
-
Serialize Fields Based on Custom Criteria in Jackson By using Jackson, we can serialize only those fields that meet specific custom criteria.…
-
Deserialize to Collection/Array in Jackson Deserializing the JSON Array to a Java Array or Collection is one of the most important tasks…
-
Type Handling Annotations in Jackson Type Handling annotations are used for handling types of properties. Jackson provides more than one Type Handling…
-
Deserializing JSON with Unknown Properties Jackson In this section, we will cover the most important unmarshalling process by using Jackson’s “2.x” version.…
-
Disable Annotation Usually we need to disable the Jackson annotation after completing its work. So, we use the disable() method of ObjectMapper…
-
General Annotations in Jackson General annotations include several basic annotations which we use in serialization and deserialization. JsonProperty and JsonView are the…
-
Jackson Change Name of the Field When we serialize a Java Object, we need to change the name of a specific field…
-
Jackson Ignore Null Fields In this section, we will understand how we can ignore the null fields at the time of serializing…