gpt4 book ai didi

java - 忽略给定的自定义值 Jackson JSON

转载 作者:行者123 更新时间:2023-12-03 02:59:34 24 4
gpt4 key购买 nike

如果我有一个属性的值设置为“custom_string”,在使用 POJO 和 Jackson 时是否有办法忽略它?

我知道您可以使用@JsonInclude(Include.NON_NULL)忽略null,但是有没有办法忽略自定义值?我似乎在任何地方都找不到任何关于此的注释。

我知道可以返回 value.equals("custom_string") 吗? null : value 在我的 Getter 中...但我更喜欢一种更优雅的方式。

最佳答案

另一种可能的解决方案是使用自定义过滤器,您可以在其中组合多个需求。假设我们想要过滤 null 值和“custom_string”,那么我们应该指定我们将使用 JsonInclude.Include.CUSTOM 值并提供过滤器实现。示例:

@JsonInclude(value = JsonInclude.Include.CUSTOM, valueFilter = StringFilter.class)
private String name;

// Custom filter that will omit null and "custom_string" values.
public class StringFilter {
@Override
public boolean equals(Object other) {
if (other == null) {
// Filter null's.
return true;
}

// Filter "custom_string".
return "custom_string".equals(other);
}
}

关于java - 忽略给定的自定义值 Jackson JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31250751/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com