Ignore missing properties during Jackson JSON deserialization in Java

@JsonIgnoreProperties(ignoreUnknown = true) on the class level worked for me.

Leave a Comment