Java 对象必须在球衣应用程序的 servlet 过滤器中序列化为 json 字符串。
有以下对象,
@XmlRootElement
@JsonIgnoreProperties({"bar"})
public class Foo{
String a="1";
String b="2";
@JsonIgnore
String bar="3";
};
ObjectMapper om = new ObjectMapper();
om.writeValueAsString(fooObject);
返回,
{
a:"1",
b:"2",
bar:"3" // Inspite of Jsonignore and jsonignoreproperties bar is returned
}
我该如何克服呢?