我有一个抽象类的具体对象。
我在抽象类和子类上使用了注解,但是JSON输出看起来不太对,而且反序列化时总是出现异常。
我还在学习Jackson,不幸的是,很多关于这个主题的教程已经过时了。
下面是我的对象Map器在底部的类:
抽象类:
@JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, property = "BTRFSPhysicalLocationItem")
@JsonSubTypes({
@Type(name = "Snapshot", value = Snapshot.class),
@Type(name = "Backup", value = Backup.class),
@Type(name = "Subvolume", value = Subvolume.class)})
public abstract class BTRFSPhysicalLocationItem {
private final String name;
@JsonProperty
private final Path location;
/**
* Makes a new subvolume instance with the specified location. May or may
* not actually exist.
*
* @param location The location of the subvolume
*/
@JsonCreator
protected BTRFSPhysicalLocationItem(@JsonProperty(value = "location") Path location) {
this.location = location;
this.name = location.getFileName().toString();
}
具体类别:
public class Subvolume extends BTRFSPhysicalLocationItem {
/**
* Creates a new subvolume with the specified path.The subvolume may or may
* not exist at this point.
*
* @param location
*/
@JsonCreator
public Subvolume(@JsonProperty Path location) {
super(location);
}
Objectmapper块:
ObjectMapper MAPPER = new ObjectMapper();
List<Subvolume> SUBVOLUME_LIST = new ArrayList<>();
//Subvolume is populated by other methods it's not worth showing them here
System.out.println("\n\n");
MAPPER.writeValue(System.out, SUBVOLUME_LIST);
System.out.println("\n\n\n");
var s = MAPPER.writeValueAsString(SUBVOLUME_LIST);
List<Subvolume> list = MAPPER.readValue(s, new TypeReference<List<Subvolume>>() {
});
输出JSON:[{"name":"WanderingEcho","location":"file:///home/sarah/NetBeansProjects/WanderingEcho/"}]
例外情况:
Aug 05, 2019 4:55:14 PM com.protonmail.sarahszabo.wanderingecho.btrfs.BTRFS <clinit>
SEVERE: null
com.fasterxml.jackson.databind.exc.InvalidTypeIdException: Missing type id when trying to resolve subtype of [simple type, class com.protonmail.sarahszabo.wanderingecho.btrfs.subvolume.Subvolume]: missing type id property 'BTRFSPhysicalLocationItem'
at [Source: (String)"[{"name":"WanderingEcho","location":"file:///home/sarah/NetBeansProjects/WanderingEcho/"}]"; line: 1, column: 89] (through reference chain: java.util.ArrayList[0])
其他答案,如Jackson deserialization of polymorphic types建议使用ObjectMapper
方法,但根据我读过的教程,这应该不是必要的。
不知道我做错了什么注解。
2条答案
按热度按时间ybzsozfc1#
在您的
json
中,您缺少了BTRFSPhysicalLocationItem
-请考虑一下-Jackson如何知道您期望的实现?它应该看起来像
如果希望Jackson在序列化对象时包含该类型,则还需要添加
JsonTypeInfo.As.PROPERTY
asinclude
作为@JsonTypeInfo
注解的参数,如EDITok似乎我已经弄明白了--你的问题是不生成属性,这与Java类型擦除和here有关。
tldr;Jackson有不理解类型的问题-似乎
List<Subvolume>
对他来说没有提供元素的类型。因为他不知道是什么类型他就不连载了解决方案是创建一个helper类,它将扩展
ArrayList<Subvolume>
,如另外,您的代码中还有一些问题-其中之一是,如果您希望按属性值(如
Subvolume
)而不是按包/类字符串文字进行反序列化,则应在@JsonTypeInfo
中使用use = JsonTypeInfo.Id.NAME
。第二种方法是在
@JsonCreator
参数列表中将@JsonProperty
命名为@JsonProperty(value = "location")
soat7uwm2#
当我偶然发现这篇文章时,我也遇到了类似的问题。我有
然后
我想通过电线发送
MyIntWrapper
。它将示例正确地序列化为JSON,但存在反序列化问题。我在看按照@m.antkowicz关于类型擦除的链接,我尝试将其添加到字段中。因此,我删除了
MyClass
中的注解,并将其添加到字段maybeMyInt
中-而且成功了