gpt4 book ai didi

java - 如何使用 jackson 解析可能是字符串并且可能是数组的字段

转载 作者:行者123 更新时间:2023-12-02 12:57:15 68 4
gpt4 key购买 nike

我是java和objectMapper的新手。我正在尝试解析json字段,该字段可能是键具有两种类型,它可以是字符串或数组。

例子:

{
"addresses": [],
"full_name": [
"test name_1",
"test name_2"
],
}

要么
{
{
"addresses": [],
"full_name": "test name_3",
}
}

类的例子:


@JsonIgnoreProperties(ignoreUnknown = true)
@Data -> lombok.Data
public class Document {

private List<String> addresses;

@JsonProperty("full_name")
private String fullName;
}

我使用objectMapper来反序列化json,当“full_name”字段具有字符串但到达数组时无法反序列化时,它可以正常工作。

这个想法是当到达属性时将字符串放入值,但是到达数组时,将de数组元素串联为字符串(String.join(“,”,value))

可以在类方法中应用自定义反序列化吗?例如setFullName()(使用lombok.Data)

我在该站点上看到了其他示例,但没有用。

谢谢大家

最佳答案

从 jackson 2.6起,您可以使用JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY

@JsonProperty("full_name")
@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
private String[] fullName;

关于java - 如何使用 jackson 解析可能是字符串并且可能是数组的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60097350/

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