在任何时候,我都只会设置一个 setter 方法,但两者的 JsonProperty 名称应该相同。当我编译这个时,我得到了一个例外。如何为两者设置相同的名称。?
public String getType() {
return type;
}
@JsonProperty("Json")
public void setType(String type) {
this.type = type;
}
public List<TwoDArrayItem> getItems() {
return items;
}
@JsonProperty("Json")
public void setItems(List<TwoDArrayItem> items) {
this.items = items;
}