mybatis开启懒加载后,返回bean为json时,出现如下异常
10:29:47.016 [http-apr-8088-exec-10] WARN o.s.w.s.m.s.DefaultHandlerExceptionResolver -
Failed to write HTTP message: org.springframework.http.converter.HttpMessageNotWritableException:
Could not write content:
No serializer found for class org.apache.ibatis.executor.loader.javassist.JavassistProxyFactory$EnhancedResultObjectProxyImpl and no properties discovered to create BeanSerializer
(to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS) )
网上两种处理意见
1 继承ObjectMapper 设置属性为 SerializationFeature.FAIL_ON_EMPTY_BEANS 为false。
2 在需要转json的实体类上加 @JsonInclude(JsonInclude.Include.NON_EMPTY)
第二种方案有一个弊端 ,比如实体类中,存在一个integer为0 ,则json就不转化了
查找发现 对于hibeante有一种处理方式
@JsonIgnoreProperties(value={“hibernateLazyInitializer”,”handler})
我认为 mybatis也应该可以有类似hibernate的处理方式
但是网上没有找到
debug观察需要处理的bean,发现多了一个属性
应该是懒加载时候一个代理
尝试在转换时 忽略他@JsonIgnoreProperties(value = {"javassistProxyFactory", "handler"})
搞定