Java에서 Jackson JSON 역직렬화 중 누락된 속성 무시 이 예에서는 class Person { String name; int age; } JSON 개체에 누락된 속성 'age'가 있는 경우 { "name": "John" } Person person = objectMapper.readValue(jsonFileReader, Person.class); 을 던지다JsonMappingException역직렬화 할 수 없다면서역직렬화 중에 누락된 필드를 무시하는 주석이 있습니까?@JsonIgnoreProperties(ignoreUnknown = true) 반에서 제 일을 해줬습니다.네가 원하는 건 @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL) pu..