Parsing String to JsonNode Jackson In this section, we will understand how we can use Jackson 2.0 for converting a JSON String…
Setup Environment
-
-
Serialize and Deserialize Booleans as Integers with Jackson In Java, the Jackson library is the de-facto standard when it comes to processing…
-
Serialize and Deserialize Enums with Jackson In this section, we will understand how we can serialize and deserialize Java Enums by using…
-
Serialize and Deserialize Specific Fields in Jackson In this section, we will explore various ways through which we can control whether the…
-
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.…