I have the following json file:
{
\"segments\": {
\"externalId\": 123,
\"name\": \"Tomas Zulberti\",
\"shoul
Also we can use mapper.enable(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES); instead @JsonIgnoreProperties(ignoreUnknown=true)
but for particular property we can use
@JsonIgnoreProperties({"externalId"})
public class Segment {
private String id;
private String name;
private boolean shouldInform;
// getter and setters here...
}