2019-01-14 Echarts图表在Springboot无法显示

在做一个简单的Echarts图表在前端展示的时候,图表出不来,数据也出不来。报错如下:

com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS) (through reference chain: com.xwj.entity.UserEntity_$$_jvst57f_0["handler"])

原因是:实体类entity中有的字段值为null,所以在json化的时候,fasterxml.jackson将对象转换为json报错

解决方法:

在实体类上面加上注解 @JsonIgnoreProperties(value = { "hibernateLazyInitializer", "handler" })


你可能感兴趣的:(2019-01-14 Echarts图表在Springboot无法显示)