Could not write JSON: No serializer found for class org.hibernate.proxy.pojo.javassist.JavassistLazy

来源:互联网 发布:mac怎么下载photoshop 编辑:程序博客网 时间:2024/05/15 07:54

在学习spring boot时根据id获取一个对象时出现以下异常(返回的是json格式):

{"timestamp":1500972035655,"status":500,"error":"Internal Server Error","exception":"org.springframework.http.converter.HttpMessageNotWritableException","message":"Could not write JSON: 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); nested exception is com.fasterxml.jackson.databind.JsonMappingException: 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.springboot.domain.Girl_$$_jvst3_0[\"handler\"])","path":"/girls/id/2"}

解决办法:在对应的实体类上加上

@JsonIgnoreProperties({"hibernateLazyInitializer","handler"})注解

阅读全文
0 0
原创粉丝点击