8
생성자가 @JsonCreator로 주석을다는 경우 왜 그 인수는 @JsonProperty로 주석을 달아야합니까?
Jackson에서는 생성자에를 주석으로 추가 할 때 @JsonCreator인수에 @JsonProperty. 그래서이 생성자는 public Point(double x, double y) { this.x = x; this.y = y; } 이렇게됩니다 : @JsonCreator public Point(@JsonProperty("x") double x, @JsonProperty("y") double y) { this.x = x; this.y = y; } 왜 필요한지 모르겠습니다. 설명해 주시겠습니까?
108
java
json
serialization
jackson