Springboot&@Cacheable&Redis
在Redis配置类中配置缓存管理器为RedisCacheManager
Springboot&@Cacheable&Redis
使用@Cacheable时,CachingConfigurationSelector会自动寻找CachaeManager类,由于我们配置CacheManager类为RedisCacheManager,应此在写缓存时,会使用下图中的DefaultRedisCacherWriter类,put方法把缓存的数据存入reids。
Springboot&@Cacheable&Redis

相关文章: