XML Serialization and Deserialization with Jackson In this section, we will discuss another important concept of Jackson, i.e., serialization and deserialization of…
tree model
-
-
Serialize Date by using Jackson In Java, Date is one of the most important data types. When we work with REST API,…
-
Compare JSON Objects with Jackson Jackson is one of the most used libraries for comparing JSON objects. Many times, we need to…
-
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…