spring 不返回某个字段

1.注解使用在 类名,接口头上

@JsonIgnoreProperties(value={"comid"}) //希望动态过滤掉的属性  

  1. @JsonIgnoreProperties(value={"comid"})   
  2. public interface CompanyFilter{     
  3.      }  


2。该注解使用在get方法头上

@JsonIgnore

   例  

[html]  view plain  copy
  1. @JsonIgnore  
  2.   public Integer getPageSize(){  
  3.          return Integer.valueOf(getRows()==null?"0":getRows().toString());  
  4.   }  

你可能感兴趣的:(spring 不返回某个字段)