Ignoring property when deserializing

Version 2.6.0+ allows this to be done with @JsonIgnoreProperties at the class level.

@JsonIgnoreProperties(value={ "money" }, allowGetters=true)

Take a look at this closed issue:
https://github.com/FasterXML/jackson-databind/issues/95

Leave a Comment