我正在尝试解析以下格式的JSON:
[
{
"wrapper": {
"fieldA": "testA1",
"fieldB": "testB1",
}
},
{
"wrapper": {
"fieldA": "testA2",
"fieldB": "testB2",
}
},
{
"wrapper": {
"fieldA": "testA3",
"fieldB": "testB3",
}
}
]
我的Java代码如下:
@JsonIgnoreProperties(ignoreUnknown = true)
public class Wrapper {
@JsonProperty("wrapper")
MyObject wrapper;
}
和
@JsonIgnoreProperties(ignoreUnknown = true)
public class MyObject {
@JsonProperty("fieldA")
String fieldA;
@JsonProperty("fieldB")
String fieldA;
}
这有效,但我不想仅将单独的类用于包装器元素。如何配置MyObject
类以直接映射JSON结构?