无法使用 Jackson 将 JSON 反序列化为多态类型
问题:
尝试时反序列化多态JSON数据,编译时遇到错误时间:
The method readValue(JsonParser, Class) in the type ObjectMapper is not applicable for the arguments (ObjectNode, Class<capture#6-of ? extends Animal>)
由行:
return mapper.readValue(root, animalClass);
触发:
要解决这个问题,我们可以使用注释来指示基类(Animal)与其子类(Dog 和 Cat)之间的多态关系。通过在 Animal 类中声明 @JsonTypeInfo、@JsonSubTypes 和 @JsonIgnoreProperties 注解,ObjectMapper 将获知类的多态性。
带注解的 Animal 类:
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonSubTypes; import com.fasterxml.jackson.annotation.JsonTypeInfo; @JsonIgnoreProperties(ignoreUnknown = true) @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY) @JsonSubTypes({ @JsonSubTypes.Type(value = Dog.class, name = "Dog"), @JsonSubTypes.Type(value = Cat.class, name = "Cat") }) public abstract class Animal { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } }
子类声明:
按如下方式定义 Dog 和 Cat 子类:
public class Dog extends Animal { private String breed; public Dog() { } public Dog(String name, String breed) { setName(name); setBreed(breed); } public String getBreed() { return breed; } public void setBreed(String breed) { this.breed = breed; } } public class Cat extends Animal { public String getFavoriteToy() { return favoriteToy; } public Cat() {} public Cat(String name, String favoriteToy) { setName(name); setFavoriteToy(favoriteToy); } public void setFavoriteToy(String favoriteToy) { this.favoriteToy = favoriteToy; } private String favoriteToy; }
这种利用注释的更新方法将实现多态 JSON 的无缝序列化和反序列化。
以上是如何使用 Jackson 将多态 JSON 反序列化为多态类型?的详细内容。更多信息请关注PHP中文网其他相关文章!