标签:
在类名,接口头上注解使用在
@JsonIgnoreProperties(value={"comid"}) //希望动态过滤掉的属性
例
@JsonIgnoreProperties(value={"comid"})
public interface 接口名称{
}
@JsonIgnoreProperties(value={"comid"})
public class 类名{
}
该注解使用在get方法头上
@JsonIgnore
例
@JsonIgnore
public Integer 属性(){
return 属性;);
}
spring -mvc 将对象封装json返回时删除掉对象中的属性注解方式
标签:
原文地址:http://www.cnblogs.com/karlze/p/4995710.html