springMvc将对象json返回时自动忽略掉对象中的特定属性的注解方式
2020-12-13 02:16
标签:https com san 过滤 方式 integer pre company tar 1.注解使用在 类名,接口头上 @JsonIgnoreProperties(value={"comid"}) //希望动态过滤掉的属性 例 2.该注解使用在get方法头上 @JsonIgnore 例 本文转自:https://blog.csdn.net/sanjay_f/article/details/47304509 springMvc将对象json返回时自动忽略掉对象中的特定属性的注解方式 标签:https com san 过滤 方式 integer pre company tar 原文地址:https://www.cnblogs.com/nizuimeiabc1/p/11030232.html@JsonIgnoreProperties(value={"comid"})
public interface CompanyFilter{
@JsonIgnore
public Integer getPageSize(){
return Integer.valueOf(getRows()==null?"0":getRows().toString());
}
文章标题:springMvc将对象json返回时自动忽略掉对象中的特定属性的注解方式
文章链接:http://soscw.com/essay/25221.html