fastjson 属性大写问题

前端之家收集整理的这篇文章主要介绍了fastjson 属性大写问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

问题:

fastjson 的属性默认是首字母小写的驼峰式分隔, 所以如果首字母是大写的话生成的json 串 有大写的也有小写的(小写是不要的)

{“BPM”:120,”bPM”:120,”x”:9}

  1. 1
  2.  
  3. 1

解决

在其get 方法前声明下
@JSONField(name = “BPM”) 相当于重命名

{“BPM”:120,“x”:9}

  1. 1
  2.  
  3. 1

代码

public class TargetPoint implements Serializable{

  1. public int x;
  2.  
  3.  
  4. public int BPM;
  5.  
  6.  
  7. public TargetPoint() {
  8. }
  9.  
  10.  
  11.  
  12.  
  13. public int getX() {
  14. return x;
  15. }
  16.  
  17. public void setX(int x) {
  18. this.x = x;
  19. }
  20.  
  21. @JSONField(name = "BPM")
  22. public int getBPM() {
  23. return BPM;
  24. }
  25.  
  26. public void setBPM(int BPM) {
  27. this.BPM = BPM;
  28. }

}

猜你在找的Json相关文章