springboot @Cacheable 的实现原理
1. springboot cache 的使用 a.pom引入jar spring-boot-starter-cache b.启动类增加注解@EnableCaching c.需要缓存的方法增加注解 @Cacheable(cacheNames = "com:xxx",key = "''+#id")图12. Cacheable 的实现原理猜测 实现原理是什么呢?脑海第一反应应该当然是大名鼎鼎是AOP、动态代理、Interceptor 这些概念,那我们怎么去验证呢?3. Cacheab
原创
2021-06-05 10:27:57 ·
4214 阅读 ·
0 评论