springboot 从redis取缓存的时候java.lang.ClassCastException:异常

时间:2023-01-25 20:29:24

在学习springboot集成redis的时候遇到这样一个奇怪的问题:我从数据库中取得的对象已经放入了redis中,而且从redis的客服端也可以查看到对应的key,开始的时候还是正常的,能正常的从缓存中取得并返回我需要的类;但是过一段时间第二次访问这个方法时(这时应该是到redis里面取)抛出了java.lang.ClassCastException异常,说你的com.test.PerSon类(假设你存入缓存的是com.test.PerSon类),不能转为com.test.PerSon类。

这个就比较奇怪了,最后在不知道怎么回事的情况下把

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-devtools</artifactId>

<optional>true</optional>

</dependency>

模块去掉了就正常了。这个也......;