如何将@JsonIdentityInfo与循环引用一起使用?

我正在尝试使用杰克逊2@JsonIdentityInfo,如此处所述。

出于测试目的,我创建了以下两个类:

public class A
{
    private B b;
    // constructor(s) and getter/setter omitted
}
public class B
{
    private A a;
    // see above
}

当然,幼稚的方法失败了:

@Test
public void testJacksonJr() throws Exception
{
    A a = new A();
    B b = new B(a);
    a.setB(b);
    String s = JSON.std.asString(a);// throws StackOverflowError
    Assert.assertEquals("{\"@id\":1,\"b\":{\"@id\":2,\"a\":1}}", s);
}

添加到类 A 和/或类 B 也不起作用。@JsonIdentityInfo(generator=ObjectIdGenerators.IntSequenceGenerator.class, property="@id")

我希望我能序列化(后来反序列化)为这样的东西:(虽然不太确定JSON)a

{
    "b": {
        "@id": 1,
        "a": {
            "@id": 2,
            "b": 1
        }
    }
}

我该怎么做?


答案 1

Jackson-jr似乎有Jackson特征的子集。 一定没有成功。@JsonIdentityInfo

如果您可以使用完整的 Jackson 库,只需使用您在问题中建议的注释的标准,然后序列化您的对象即可。例如ObjectMapper@JsonIdentityInfo

@JsonIdentityInfo(generator=ObjectIdGenerators.IntSequenceGenerator.class, property="@id")
public class A {/* all that good stuff */}

@JsonIdentityInfo(generator=ObjectIdGenerators.IntSequenceGenerator.class, property="@id")
public class B {/* all that good stuff */}

然后

A a = new A();
B b = new B(a);
a.setB(b);
ObjectMapper mapper = new ObjectMapper();
System.out.println(mapper.writeValueAsString(a));

将生成

{
    "@id": 1,
    "b": {
        "@id": 2,
        "a": 1
    }
}

其中,嵌套通过其 引用根对象。a@id


答案 2

有几种方法可以解决这种循环引用或无限递归问题。此链接详细介绍了每个链接。我已经解决了我的问题,包括在每个相关实体上方@JsonIdentityInfo注释,尽管@JsonView是最近的,并且根据您的风景,它可能是一个更好的解决方案。

@JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "id")

或者使用 IntSequenceGenerator 实现:

@JsonIdentityInfo(generator=ObjectIdGenerators.IntSequenceGenerator.class)
@Entity
public class A implements Serializable 
...