잭슨:Json 구성 값 무시 다음 json 파일이 있습니다. { "segments": { "externalId": 123, "name": "Tomas Zulberti", "shouldInform": true, "id": 4 } } 그러나 Java 모델은 다음과 같습니다. public class Segment { private String id; private String name; private boolean shouldInform; // getter and setters here... } "externalId" 필드에 getter 또는 setter가 없기 때문에 Jackson이 구문 분석할 때 예외가 발생합니다.json 필드를 무시할 수 있는 데코레이터가 있나요?주석을 사용할 수 있습니다.@JsonIg..