在 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;
}
我不明白为什么有这个必要,你能解释一下吗?