@JsonPropertyについて
Jsonでプロパティ名を示すには、@JsonPropertyアノテーションを追加すればできます。
非標準的なGetterやSetterを使う場合には、@JsonPropertyを使用してプロパティ名のSerialize/Deserializeを行いましょう。
使用例
public class bean {public int ID;private String str;
@JsonProperty(“str”)public void setStr(String str) {this.str = str;}
@JsonProperty(“str”)public String setStr() {return str;}}