xxxxxxxxxx
@JsonIgnoreProperties({ "studentName", "dept" })
xxxxxxxxxx
@JsonIgnoreProperties(ignoreUnknown = true)
public class Student {
private long id;
}
xxxxxxxxxx
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)