我正在使用Jackson的ObjectMapper
反序列化包含接口作为其属性之一的对象的JSON表示。这里可以看到代码的简化版本:
https://gist.github.com/sscovil/8735923
基本上,我的课程Asset
有两个属性:type
和properties
。 JSON模型如下所示:
{
"type": "document",
"properties": {
"source": "foo",
"proxy": "bar"
}
}
properties
属性被定义为名为AssetProperties
的接口,我有几个实现它的类(例如DocumentAssetProperties
,ImageAssetProperties
)。这个想法是图像文件具有与文档文件等不同的属性(高度,宽度)。
我已经完成了this article中的示例,在SO和更高版本中阅读了文档和问题,并在@JsonTypeInfo
注释参数中尝试了不同的配置,但是还没有能够破解这个坚果。任何帮助将不胜感激。
最近,我得到的例外是:
java.lang.AssertionError: Could not deserialize JSON.
...
Caused by: org.codehaus.jackson.map.JsonMappingException: Could not resolve type id 'source' into a subtype of [simple type, class AssetProperties]
提前致谢!
SOLUTION:
非常感谢@MichałZiober,我能够解决这个问题。我还能够使用Enum作为类型ID,这需要一些谷歌搜索。这是一个更新的Gist,包含工作代码:
答案 0 :(得分:18)
您应该使用JsonTypeInfo.As.EXTERNAL_PROPERTY
代替JsonTypeInfo.As.PROPERTY
。在这种情况下,您的Asset
类应如下所示:
class Asset {
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
include = JsonTypeInfo.As.EXTERNAL_PROPERTY,
property = "type")
@JsonSubTypes({
@JsonSubTypes.Type(value = ImageAssetProperties.class, name = "image"),
@JsonSubTypes.Type(value = DocumentAssetProperties.class, name = "document") })
private AssetProperties properties;
public AssetProperties getProperties() {
return properties;
}
public void setProperties(AssetProperties properties) {
this.properties = properties;
}
@Override
public String toString() {
return "Asset [properties("+properties.getClass().getSimpleName()+")=" + properties + "]";
}
}
另请参阅此问题中的答案:Jackson JsonTypeInfo.As.EXTERNAL_PROPERTY doesn't work as expected。