fastjson忽略JSONField

fastjson忽略JSONField
在字段上加上如下属性即可包是 import com.fasterxml.jackson.annotation.JsonIgnore;
 	@JsonIgnore
    private String businessScope;
    这样就可以忽略fastjson下面的注解
    @JSONField(name = "Scope")
    private String            businessScope;
   

你可能感兴趣的:(fastjson忽略JSONField)