Ignore fields in JSON using Jackson @JsonIgnoreProperties or @JsonIgnore
Jackson provides an efficient way to bind JSON to POJOs. However, at times, certain properties may need to be ignored while converting a JSON to Java Object or Java Object to JSON. Jackson provides three ways to Ignore fields in JSON. @JsonIgnoreProperties– This annotation can be used at the type level to ignore json properties. … Read more