问题修复 No serializer found for class org.hibernate.proxy.pojo.bytebuddy.ByteBuddyInterceptor

报错详情
org.springframework.data.redis.serializer.SerializationException: Could not write JSON: No serializer found for class org.hibernate.proxy.pojo.bytebuddy.ByteBuddyInterceptor and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS) (through reference chain: 
xx.xx.xx.xx.xx.XXX$HibernateProxy$KnxukjCm["$$_hibernate_interceptor"]); nested exception is com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class org.hibernate.proxy.pojo.bytebuddy.ByteBuddyInterceptor and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS) (through reference chain: 
xx.xx.xx.xx.xx.XXX$HibernateProxy$KnxukjCm["$$_hibernate_interceptor"])
Caused by: com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class org.hibernate.proxy.pojo.bytebuddy.ByteBuddyInterceptor and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS) (through reference chain: 
xx.xx.xx.xx.xx.XXX$HibernateProxy$KnxukjCm["$$_hibernate_interceptor"])
问题分析
①条件:

使用了JPA的Repository的getOne()方法。并且使用了Redis对其进行缓存。

②过程:

getOne()方法是一个延迟加载操作。只能获得对实体的引用(代理),实际上没有进行数据库访问。只有当调用它的属性时才会查询数据库。

解决方案① (推荐)

使用findById().get()方法来获取一个真实的实体。

解决方案②

在延时加载相关的字段上或者在实体类上加入相关注解忽略

@JsonIgnoreProperties({"hibernateLazyInitializer", "handler"})
解决方案③

或者在延时加载的字段上修改延时加载属性

FetchType.LAZY

改为

FetchType.EAGER

表示急加载立即加载

如果文章对您有帮助,请扫红包码赞助

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值