- application.properties中記得啟用緩存
spring.cache.type=redis
- 緩存的對象必須實現Serializable
- SpringBootApplication中要加
@EnableCaching
注解
@Cacheable
是基於Spring AOP代理類,內部方法調用是不走代理的,@Cacheable
是不起作用的
spring.cache.type=redis
@EnableCaching
注解@Cacheable
是基於Spring AOP代理類,內部方法調用是不走代理的,@Cacheable
是不起作用的
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。