javaBean在定义属性名称为大写CID,转json之后变为cId小写的解决办法【前两个字母】

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;
}

好了,通过以上这种方式就可以避免属性名称自动变为小写了~

你可能感兴趣的:(Java)