在使用Springboot的时候,运行出现。。。discovered to createBeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS)。。。错误,我也不知道怎么就出现这样的错误,百度一番得到解决方案
解决
在bean上加注解:
@JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer","fieldHandler"})
如图所示
网友评论