gpt4 book ai didi

java - 使用 Jackson 反序列化包含在具有未知属性名称的对象中的 JSON

转载 作者:搜寻专家 更新时间:2023-11-01 02:40:05 26 4
gpt4 key购买 nike

我使用 Jackson 将 JSON 从 ReST API 反序列化为使用 Jackson 的 Java 对象。

我遇到的问题是,一个特定的 ReST 响应返回时包裹在一个由数字标识符引用的对象中,如下所示:

{
"1443": [
/* these are the objects I actually care about */
{
"name": "V1",
"count": 1999,
"distinctCount": 1999
/* other properties */
},
{
"name": "V2",
"count": 1999,
"distinctCount": 42
/* other properties */
},
...
]
}

到目前为止,我(也许是幼稚的)反序列化 JSON 的方法是创建镜像 POJO 并让 Jackson 简单自动地映射所有字段,它做得很好。

问题是 ReST 响应 JSON 具有对我实际需要的 POJO 数组的动态数字引用。我无法创建镜像包装器 POJO,因为属性名称本身既是动态的又是非法的 Java 属性名称。

对于我可以调查的路线的任何和所有建议,我将不胜感激。

最佳答案

没有自定义反序列化器的最简单的解决方案是使用 @JsonAnySetter . Jackson 将为每个未映射的属性调用带有此注释的方法。

例如:

public class Wrapper {
public List<Stuff> stuff;

// this will get called for every key in the root object
@JsonAnySetter
public void set(String code, List<Stuff> stuff) {
// code is "1443", stuff is the list with stuff
this.stuff = stuff;
}
}

// simple stuff class with everything public for demonstration only
public class Stuff {
public String name;
public int count;
public int distinctCount;
}

要使用它,您只需执行以下操作:

new ObjectMapper().readValue(myJson, Wrapper.class);

相反,您可以使用 @JsonAnyGetter应该返回 Map<String, List<Stuff>)在这种情况下。

关于java - 使用 Jackson 反序列化包含在具有未知属性名称的对象中的 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35690096/

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