欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springMVC响应json结果生成is开头的属性

程序员文章站 2022-07-12 18:48:44
...
本来在开发中尽量不用以is开头的变量名的,但是因为开发中用到了zTree,节点字段中包含isParent字段。前端必须要用到该字段,所以定义子节点类如下:
public class ZTreeNode {
private String id;
private String pId;
private String name;
private boolean isParent;
}
其中的isParent字段以is开头,利用自动生成get set方法后,发现前端接收到json对应字段名为parent。
具体解决方法如下:
1.在get方法上面加入@JsonProperty(value = "isParent")注解
2.手动修改get方法名为getIsParent