本文介绍了没有注释的杰克逊过滤器属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
public Class User {
private String name;
private Integer age;
...
}
ObjectMapper om = new ObjectMapper();
om.writeValueAsString(user);
如何在不使用@JsonIgnore 之类的任何注解的情况下过滤属性?
How can I filter properties without using any annotations like @JsonIgnore?
推荐答案
你有两种可能的方式使用 Jackson
You have two possible ways using Jackson
Mixin 注释:- http://www.cowtowncoder.com/博客/archives/2009/08/entry_305.html
Mixin Annotations :- http://www.cowtowncoder.com/blog/archives/2009/08/entry_305.html
JSON 过滤器:- http://wiki.fasterxml.com/JacksonFeatureJsonFilter
JSON Filter :- http://wiki.fasterxml.com/JacksonFeatureJsonFilter
这篇关于没有注释的杰克逊过滤器属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!