如何避免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时,我得到了无限循环。