gpt4 book ai didi

java - jackson 的@JsonSubTypes 是否仍然需要多态反序列化?

转载 作者:IT老高 更新时间:2023-10-28 12:46:30 30 4
gpt4 key购买 nike

我能够序列化和反序列化抽象基类注释的类层次结构

@JsonTypeInfo(
use = JsonTypeInfo.Id.MINIMAL_CLASS,
include = JsonTypeInfo.As.PROPERTY,
property = "@class")

但没有@JsonSubTypes列出子类,子类本身也相对没有注释,在构造函数上只有一个@JsonCreator。 ObjectMapper 是普通的,我没有使用 mixin。

关于 PolymorphicDeserialization and "type ids" 的 jackson 文档建议(强烈)我需要抽象基类上的 @JsonSubTypes 注释,或者在 mixin 上使用它,或者我需要 register the subtypes with the ObjectMapper .并且有很多同意的问题和/或博客文章。然而它确实有效。 (这是 Jackson 2.6.0。)

所以...我是一个尚未记录的功能的受益者,还是我依赖​​于未记录的行为(可能会改变),还是发生了其他事情? (我问是因为我真的不希望它是后两者中的任何一个。但是 I gots to know 。)

编辑:添加代码 - 和一条评论。评论是:我应该提到我要反序列化的所有子类都与基本抽象类在同一个包和同一个 jar 中。

抽象基类:

package so;
import com.fasterxml.jackson.annotation.JsonTypeInfo;

@JsonTypeInfo(
use = JsonTypeInfo.Id.MINIMAL_CLASS,
include = JsonTypeInfo.As.PROPERTY,
property = "@class")
public abstract class PolyBase
{
public PolyBase() { }

@Override
public abstract boolean equals(Object obj);
}

它的子类:

package so;
import org.apache.commons.lang3.builder.EqualsBuilder;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

public final class SubA extends PolyBase
{
private final int a;

@JsonCreator
public SubA(@JsonProperty("a") int a) { this.a = a; }

public int getA() { return a; }

@Override
public boolean equals(Object obj) {
if (null == obj) return false;
if (this == obj) return true;
if (this.getClass() != obj.getClass()) return false;

SubA rhs = (SubA) obj;
return new EqualsBuilder().append(this.a, rhs.a).isEquals();
}
}

子类 SubBSubC 是相同的,只是字段 a 被声明为 String(不是 int) 在 SubBboolean (不是 int) 在 SubC (和方法 getA 进行了相应的修改)。

测试类:

package so;    
import java.io.IOException;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.testng.annotations.Test;
import static org.assertj.core.api.Assertions.*;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.ObjectMapper;

public class TestPoly
{
public static class TestClass
{
public PolyBase pb1, pb2, pb3;

@JsonCreator
public TestClass(@JsonProperty("pb1") PolyBase pb1,
@JsonProperty("pb2") PolyBase pb2,
@JsonProperty("pb3") PolyBase pb3)
{
this.pb1 = pb1;
this.pb2 = pb2;
this.pb3 = pb3;
}

@Override
public boolean equals(Object obj) {
if (null == obj) return false;
if (this == obj) return true;
if (this.getClass() != obj.getClass()) return false;

TestClass rhs = (TestClass) obj;
return new EqualsBuilder().append(pb1, rhs.pb1)
.append(pb2, rhs.pb2)
.append(pb3, rhs.pb3)
.isEquals();
}
}

@Test
public void jackson_should_or_should_not_deserialize_without_JsonSubTypes() {

// Arrange
PolyBase pb1 = new SubA(5), pb2 = new SubB("foobar"), pb3 = new SubC(true);
TestClass sut = new TestClass(pb1, pb2, pb3);

ObjectMapper mapper = new ObjectMapper();

// Act
String actual1 = null;
TestClass actual2 = null;

try {
actual1 = mapper.writeValueAsString(sut);
} catch (IOException e) {
fail("didn't serialize", e);
}

try {
actual2 = mapper.readValue(actual1, TestClass.class);
} catch (IOException e) {
fail("didn't deserialize", e);
}

// Assert
assertThat(actual2).isEqualTo(sut);
}
}

此测试通过,如果您在第二行 try { 中断,您可以检查 actual1 并查看:

{"pb1":{"@class":".SubA","a":5},
"pb2":{"@class":".SubB","a":"foobar"},
"pb3":{"@class":".SubC","a":true}}

所以三个子类被正确序列化(每个子类都以它们的类名作为id)然后反序列化,结果比较相等(每个子类都有一个“值类型”equals())。

最佳答案

Jackson 有两种方法可以在序列化和反序列化中实现多态性。它们在link 中的第1 节。用法 中定义。你发布了。

你的代码

@JsonTypeInfo(
use = JsonTypeInfo.Id.MINIMAL_CLASS,
include = JsonTypeInfo.As.PROPERTY,
property = "@class")

是第二种方法的一个示例。首先要注意的是

All instances of annotated type and its subtypes use these settings (unless overridden by another annotation)

所以这个配置值传播到所有子类型。然后,我们需要一个类型标识符,它将 Java 类型映射到 JSON 字符串中的文本值,反之亦然。在您的示例中,这是由 JsonTypeInfo.Id#MINIMAL_CLASS 给出的

Means that Java class name with minimal path is used as the type identifier.

因此,从目标实例生成一个最小类名,并在序列化时写入 JSON 内容。或者使用最小类名来确定反序列化的目标类型。

您也可以使用 JsonTypeInfo.Id#NAME其中

Means that logical type name is used as type information; name will then need to be separately resolved to actual concrete type (Class).

要提供这样的逻辑类型名称,请使用 @JsonSubTypes

Annotation used with JsonTypeInfo to indicate sub types of serializable polymorphic types, and to associate logical names used within JSON content (which is more portable than using physical Java class names).

这只是实现相同结果的另一种方法。您询问的有关状态的文档

Type ids that are based on Java class name are fairly straight-forward: it's just class name, possibly some simple prefix removal (for "minimal" variant). But type name is different: one has to have mapping between logical name and actual class.

因此,处理类名的各种 JsonTypeInfo.Id 值是直截了当的,因为它们可以自动生成。但是,对于类型名称,您需要明确给出映射值。

关于java - jackson 的@JsonSubTypes 是否仍然需要多态反序列化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31665620/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com