具有不同对象的类型的 Jackson 反序列化
2022-09-03 09:52:21
我有一个来自Web服务的结果,该结果返回布尔值或单例映射,例如
布尔结果:
{
id: 24428,
rated: false
}
地图结果:
{
id: 78,
rated: {
value: 10
}
}
单独来看,我可以很容易地映射这两个,但是我该如何一般地做到这一点呢?
基本上,我想将它映射到一个类,例如:
public class Rating {
private int id;
private int rated;
...
public void setRated(?) {
// if value == false, set rated = -1;
// else decode "value" as rated
}
}
所有多态示例都用于基于数据中的属性进行映射,但在本例中我没有该选项。@JsonTypeInfo
编辑
更新的代码部分:
@JsonProperty("rated")
public void setRating(JsonNode ratedNode) {
JsonNode valueNode = ratedNode.get("value");
// if the node doesn't exist then it's the boolean value
if (valueNode == null) {
// Use a default value
this.rating = -1;
} else {
// Convert the value to an integer
this.rating = valueNode.asInt();
}
}