alibaba / fastjson

FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
https://github.com/alibaba/fastjson2/wiki/fastjson_1_upgrade_cn
Apache License 2.0
25.74k stars 6.5k forks source link

JsonProperty #1078

Open jainh opened 7 years ago

jainh commented 7 years ago

Does FastJSON support annotation like @JsonProperty like Jackson in order to give custom name to key name of the JSON string ?

wenshao commented 7 years ago

com.alibaba.fastjson.annotation.JSONField

https://github.com/alibaba/fastjson/wiki/JSONField

 public class Model {
      @JSONField(name="ID")
      private int id;

      public int getId() {return id;}
      public void setId(int value) {this.id = id;}
 }