spring -mvc 将对象封装json返回时删除掉对象中的属性注解方式
在类名,接口头上注解使用在
@JsonIgnoreProperties(value={"comid"}) //希望动态过滤掉的属性
例
@JsonIgnoreProperties(value={"comid"})
public interface 接口名称{
}
@JsonIgnoreProperties(value={"comid"})
public class 类名{
}
该注解使用在get方法头上
@JsonIgnore
例
@JsonIgnore
public Integer 属性(){
return 属性;);
}
时间: 2024-10-06 01:09:02