Dans Jackson, lorsque vous annotez un constructeur avec @JsonCreator
, vous devez annoter ses arguments avec @JsonProperty
. Donc ce constructeur
public Point(double x, double y) {
this.x = x;
this.y = y;
}
devient ceci:
@JsonCreator
public Point(@JsonProperty("x") double x, @JsonProperty("y") double y) {
this.x = x;
this.y = y;
}
Je ne comprends pas pourquoi c'est nécessaire. Pouvez-vous expliquer?