我正在尝试使用here描述的来自Jackson 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);
}

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

我希望可以将a序列化(然后反序列化)为类似以下内容:(尽管不太确定JSON)
{
    "b": {
        "@id": 1,
        "a": {
            "@id": 2,
            "b": 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引用根对象。

09-13 08:31