这是我的示例类:
public class ABC{
private String stringInQuestion;
private Location loc;
@JsonAttribute(ignore = true, mandatory = true, nullable = false)
public String getstringInQuestion() {
return loc.getLocationID();
}
此属性仍显示在我的回复中。我不想序列化它。使用Jackson忽略(@JsonIgnore)可以正常工作,但是,为了获得性能提升,我们切换到DSL Json库。任何帮助表示赞赏。