为什么@JsonTypeInfo不与@JsonIdentityInfo一起使用?

时间:2013-02-23 15:04:57

标签: jackson

@JsonIdentityInfo按预期使用以下类:

基类:

@JsonIdentityInfo(generator =  ObjectIdGenerators.PropertyGenerator.class, property = "uuid")
public class TestEntityBas {
    @JsonProperty
    public String uuid = "0001";
}

子类:

public class TestEntityGoa extends TestEntityBas  {
    @JsonProperty
    public String texten = "This is text!";
}

容器类:

public class TestEntity {
    @JsonProperty
    String stringer = "Hej hopp!";

    @JsonIdentityReference(alwaysAsId = true)
    public TestEntityGoa goa = new TestEntityGoa(); 
}

结果如预期:

{"stringer":"Hej hopp!","goa":"0001"}

当我将@JsonTypeInfo添加到基类时,如下所示:

@JsonTypeInfo(use=JsonTypeInfo.Id.CLASS, include=JsonTypeInfo.As.PROPERTY, property="@class")
@JsonIdentityInfo(generator =  ObjectIdGenerators.PropertyGenerator.class, property = "uuid")
public class TestEntityBas {
    @JsonProperty
    public String uuid = "0001";
}

现在整个TestEntityGoa被序列化如下:

{"stringer":"Hej hopp!","goa":{"@class":"com.fodolist.model.TestEntityGoa","uuid":"0001","texten":"This is text!"}}

即使我在同一个类中使用@JsonTypeInfo和@JsonIdentityInfo,我也期待第一个结果。我做错了什么?

1 个答案:

答案 0 :(得分:1)

我在这里看不到任何明显的错误,所以你可能发现了一个错误。类型和身份信息的组合有点难以处理,因此可能存在尚未按预期工作的边缘情况,因此您可以在Github问题跟踪器上提交错误吗?