我想映射以下JSON:
[
{
"rate": {
"id": "1",
"value": "1"
}
},
{
"rate": {
"id": "2",
"value": "2"
}
}
]
使用注释到List<Rate>
。如何将"rate"
属性映射到Rate
对象?
不可能像这样注释吗?
@JsonClassMapping("rate") // Fictitious annotation
public class Rate {
@JsonProperty("id")
int id;
@JsonProperty("value")
int value;
}
这个JSON与Jackson - How to process (deserialize) nested JSON?中假定的副本略有不同。在我的案例中,我无法得到建议的解决方案。
答案 0 :(得分:0)