In Jackson, quando annoti un costruttore con @JsonCreator
, devi annotare i suoi argomenti con @JsonProperty
. Quindi questo costruttore
public Point(double x, double y) {
this.x = x;
this.y = y;
}
diventa questo:
@JsonCreator
public Point(@JsonProperty("x") double x, @JsonProperty("y") double y) {
this.x = x;
this.y = y;
}
Non capisco perché sia necessario. Puoi spiegare per favore?