JAVA/Java기초2024. 6. 14. 13:25Jackson 라이브러리에서 @JsonProperty(index)를 사용하여 JSON 배열 순서 제어하기
Jackson 라이브러리를 사용할 때 JSON 직렬화 및 역직렬화 과정을 제어하는 데 사용된다,. "@JsonProperty" 의 "index" 속성은 JSON 배열을 처리할 때 각 요소의 순서를 지정하는데 사용된다. import com.fasterxml.jackson.annotation.JsonProperty;import com.fasterxml.jackson.databind.ObjectMapper;class Person { @JsonProperty(index = 1) private String name; @JsonProperty(index = 0) private int age; // 기본 생성자 필요 public Person() {} public Person(in..