Java充电社
专辑
博文
联系我
本人继续续收门徒,亲手指导
Spring系列第41篇:@EnableCaching集成redis缓存
相关专辑:
Spring教程
<div style="display:none"></div> 上篇文章主要介绍了[spring中缓存的使用](/course/5/122),不过文中的案例都是以本地内存作为存储介质的,但是实际上我们的项目上线之后,基本上都会采用集群的方式进行部署,如果将数据存储在本地内存中,集群之间是无法共享的,我们可以将数据存储在redis中,从而实现缓存的共享,下面我们一起来看下**Spring中@EnableCaching如何对接redis**。 ## 安装redis ```java 下载地址:https://redis.io/download ``` ## pom.xml中引入redis配置 ```xml <dependency> <groupId>org.redisson</groupId> <artifactId>redisson</artifactId> <version>3.13.3</version> </dependency> ``` ## 项目中创建redis配置文件 新建`com/javacode2018/cache/demo2/redis.yml`,内容如下: ```java singleServerConfig: address: "redis://127.0.0.1:6379" password: null clientName: null database: 7 #选择使用哪个数据库0~15 idleConnectionTimeout: 10000 connectTimeout: 10000 timeout: 3000 codec: class: "org.redisson.codec.JsonJacksonCodec" ``` ## 创建redis相关的bean ```java package com.javacode2018.cache.demo2; import org.redisson.Redisson; import org.redisson.api.RedissonClient; import org.redisson.config.Config; import org.redisson.spring.cache.RedissonSpringCacheManager; import org.springframework.cache.CacheManager; import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import java.io.IOException; import java.io.InputStream; import java.util.Arrays; @ComponentScan @EnableCaching //@1 public class MainConfig2 { @Bean //@2 public CacheManager cacheManager() throws IOException { RedissonSpringCacheManager cacheManager = new RedissonSpringCacheManager(this.redissonClient()); cacheManager.setCacheNames(Arrays.asList("cache1")); return cacheManager; } @Bean //@3 public RedissonClient redissonClient() throws IOException { InputStream is = MainConfig2.class.getResourceAsStream("/com/javacode2018/cache/demo2/redis.yml"); Config config = Config.fromYAML(is); return Redisson.create(config); } } ``` @1:开启spring cache功能。 @2:自定义spring中cache管理器,这个地方我们定义了一个redis类型的管理器,底层使用redis来作为缓存的存储介质。 @3:通过redis.yml配置文件来创建一个RedissonClient,用于和redis进行交互。 ## 来个测试类 ```java package com.javacode2018.cache.demo2; import org.springframework.cache.annotation.Cacheable; import org.springframework.stereotype.Component; import java.util.Arrays; import java.util.List; @Component public class BookService { @Cacheable(cacheNames = "cache1", key = "#root.targetClass.name+'-'+#root.method.name") public List<String> list() { System.out.println("---模拟从db中获取数据---"); return Arrays.asList("java高并发", "springboot", "springcloud"); } } ``` ## 测试用例 ```java @Test public void test7() { AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MainConfig2.class); BookService bookService = context.getBean(BookService.class); System.out.println(bookService.list()); System.out.println(bookService.list()); { System.out.println("下面打印出cache1缓存中的key列表"); RedissonSpringCacheManager cacheManager = context.getBean(RedissonSpringCacheManager.class); RedissonCache cache1 = (RedissonCache) cacheManager.getCache("cache1"); cache1.getNativeCache().keySet().stream().forEach(System.out::println); } } ``` ## 运行输出 ```java ---模拟从db中获取数据--- [java高并发, springboot, springcloud] [java高并发, springboot, springcloud] 下面打印出cache1缓存中的key列表 com.javacode2018.cache.demo2.BookService-list ``` 此时数据已经进入redis了,我们用redis客户端工具`RedisDesktopManager`来看一下。 `RedisDesktopManager`下载地址 ```java 链接:https://pan.baidu.com/s/1WCd-tk8dDDJnFIKciVIQsA 提取码:x728 ``` 解压之后,点击下面的直接运行 ![](https://itsoku.oss-cn-hangzhou.aliyuncs.com/itsoku/blog/article/123/adc8c69f-3347-47e1-85c6-390371fa13f1.png) ![](https://itsoku.oss-cn-hangzhou.aliyuncs.com/itsoku/blog/article/123/ebfbb524-1de7-4d3c-b0bf-aa2cde5ec142.png) ## 案例源码 ```java https://gitee.com/javacode2018/spring-series ``` **本博客所有系列案例代码以后都会放到这个上面,大家watch一下,可以持续关注动态。** <a style="display:none" target="_blank" href="https://mp.weixin.qq.com/s/_S1DD2JADnXvpexxaBwLLg" style="color:red; font-size:20px; font-weight:bold">继续收门徒,亲手带,月薪 4W 以下的可以来找我</a> ## 最新资料 1. <a href="https://mp.weixin.qq.com/s?__biz=MzkzOTI3Nzc0Mg==&mid=2247484964&idx=2&sn=c81bce2f26015ee0f9632ddc6c67df03&scene=21#wechat_redirect" target="_blank">尚硅谷 Java 学科全套教程(总 207.77GB)</a> 2. <a href="https://mp.weixin.qq.com/s?__biz=MzkwOTAyMTY2NA==&mid=2247484192&idx=1&sn=505f2faaa4cc911f553850667749bcbb&scene=21#wechat_redirect" target="_blank">2021 最新版 Java 微服务学习线路图 + 视频</a> 3. <a href="https://mp.weixin.qq.com/s?__biz=MzkwOTAyMTY2NA==&mid=2247484573&idx=1&sn=7f3d83892186c16c57bc0b99f03f1ffd&scene=21#wechat_redirect" target="_blank">阿里技术大佬整理的《Spring 学习笔记.pdf》</a> 4. <a href="https://mp.weixin.qq.com/s?__biz=MzkwOTAyMTY2NA==&mid=2247484544&idx=2&sn=c1dfe907cfaa5b9ae8e66fc247ccbe84&scene=21#wechat_redirect" target="_blank">阿里大佬的《MySQL 学习笔记高清.pdf》</a> 5. <a href="https://mp.weixin.qq.com/s?__biz=MzkwOTAyMTY2NA==&mid=2247485167&idx=1&sn=48d75c8e93e748235a3547f34921dfb7&scene=21#wechat_redirect" target="_blank">2021 版 java 高并发常见面试题汇总.pdf</a> 6. <a href="https://mp.weixin.qq.com/s?__biz=MzkwOTAyMTY2NA==&mid=2247485664&idx=1&sn=435f9f515a8f881642820d7790ad20ce&scene=21#wechat_redirect" target="_blank">Idea 快捷键大全.pdf</a> ![](https://itsoku.oss-cn-hangzhou.aliyuncs.com/itsoku/blog/article/1/2883e86e-3eff-404a-8943-0066e5e2b454.png)
相关专辑:
Spring教程