避免在Spring Data MongoDB中使用DBRefs循环

时间:2016-08-05 09:28:49

标签: spring mongodb jackson spring-data spring-data-mongodb

如何避免Spring Data MongoDB中的DBRefs循环:

public class A implements Serialisable {
    @DBRef(lazy = true)
    private B b;
    ...
}

public class B implements Serialisable {
    @DBRef(lazy = true)
    private A a;
    ...
}

当我尝试将对象A转换为JSON时,我得到了无限循环。

0 个答案:

没有答案