1.注解使用在 类名,接口头上
@JsonIgnoreProperties(value={"comid"}) //希望动态过滤掉的属性
例
@JsonIgnoreProperties(value={"comid"})
public interface CompanyFilter{
2.该注解使用在get方法头上
@JsonIgnore
例
@JsonIgnore
public Integer getPageSize(){
return Integer.valueOf(getRows()==null?"0":getRows().toString());
}
本文转自:https://blog.csdn.net/sanjay_f/article/details/47304509