mybatis懒加载导致无法序列化的问题

解决方法,在实体类上加注解
@JsonIgnoreProperties(value = {"handler"})

或者在中加入 

fetchType="eager" 

你可能感兴趣的:(mybatis懒加载导致无法序列化的问题)