解决 springboot 中 @Cacheable不起作用

1.application.properties中记得启用缓存 spring.cache.type=redis
在这里插入图片描述

2.缓存的对象必须实现Serializable
在这里插入图片描述

3.SpringBootApplication中要加@EnableCaching注解

解决 springboot 中 @Cacheable不起作用_第1张图片

4.@Cacheable是基于Spring AOP代理类,内部方法调用是不走代理的,@Cacheable是不起作用的

解决 springboot 中 @Cacheable不起作用_第2张图片

你可能感兴趣的:(springboot,spring,Cacheable注解不起作用,spring,spring,boot,缓存)