gson序列化抛出StackOverflowError异常问题描述解决方案
问题描述使用gson库将实体对象序列化为json字符串时,出现StackOverflowError异常。如图:经过排查,发现问题出在循环依赖上。简化版示例代码如下public class A { private String name; private B b; public A(String name) { this.b = new B(this); this.name ...