1. Overview
In this tutorial, we'll look at how to handle unknown fields during deserialization using Jackson. In other words, we have a field in the JSON string, but there is no matching field in the Java class.
2. Default Behavior
Let's start with the default behavior.
We have the Person class:
Here Person has two fields, name and age.
When we try to deserialize the JSON string which includes weight field, it fails. Because weight is not present in Java object:
Note that we also have a field missing in the JSON string - name. However, it doesn't cause a problem:
Next, we'll investigate different solutions to this problem.
3. Ignore unknown values with @JsonIgnoreProperties on the Class
We can ignore some fields using @JsonIgnoreProperties on the class level:
Here, we're adding @JsonIgnoreProperties to the class and setting its ignoreUnknown attribute to true.
Hence, when we try to deserialize with @JsonIgnoreProperties in place, unknown weight field doesn't cause an exception.
4. Ignore unknown values with FAIL_ON_UNKNOWN_PROPERTIES on the ObjectMapper
Now, let's look at how we can ignore unknown fields on ObjectMapper level.
Jackson has DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES feature to decide how to handle unknown properties. It is set on ObjectMapper and affects all deserialization operations.
Here, unknown weight field doesn't also cause an exception.
5. Summary
In this tutorial, we've investigated how to ignore unknown properties during serialization using Jackson.
Check out the source code for the examples in this article over on Github.