1、在属性上面加入@JsonProperty
@JsonProperty
private String CAh;
@JsonProperty
private String CCbrMc;`在这里插入代码片`
2、在set和get方法上面加入@JsonIgnore
@JsonIgnore
public String getCAh() {
return CAh;
}
@JsonIgnore
public void setCAh(String CAh) {
this.CAh = CAh;
}
@JsonIgnore
public String getCCbrMc() {
return CCbrMc;
}
@JsonIgnore
public void setCCbrMc(String CCbrMc) {
this.CCbrMc = CCbrMc;
}
3、在需要生成json的service或者controller中加入这样一段静态代码块:
static {
TypeUtils.compatibleWithJavaBean = true;
}
好了,通过以上这种方式就可以避免属性名称自动变为小写了~