SpringBoot 开启Redis缓存及使用方法

时间:2022-06-24 19:20:13

之前不是说过Redis可以当作缓存用嘛
现在我们就配置一下SpringBoot使用Redis的缓存

Redis缓存

为什么用Redis作缓存
用redis做缓存,是因为redis有着很优秀的读写能力,在集群下可以保证数据的高可用

主要步骤

1、pom.xml文件添加依赖

2、yml文件配置redis集群

3、编写RedisConfig配置序列化及缓存配置,添加缓存注解

4、编写业务Controller,添加缓存注解

5、编写启动类

具体实践

 

整体目录结构

pom.xml添加依赖

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>org.example</groupId>
  8. <artifactId>SpringBoot_Redis</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <properties>
  12. <java.version>1.8</java.version>
  13. </properties>
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>2.1.8.RELEASE</version>
  18. </parent>
  19.  
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <!--整合redis-->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. </dependency>
  30. <!--spring boot test-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. </dependency>
  35. </dependencies>
  36.  
  37. </project>

SpringBoot 开启Redis缓存及使用方法

yml文件里配置Redis集群

结构是ip+port

  1. spring:
  2. redis:
  3. cluster:
  4. nodes:
  5. - 169.254.0.100:8001
  6. - 169.254.0.100:8002
  7. - 169.254.0.100:8003
  8. - 169.254.0.100:8004
  9. - 169.254.0.100:8005
  10. - 169.254.0.100:8006

SpringBoot 开启Redis缓存及使用方法

编写RedisConfig配置序列化及缓存配置,添加缓存注解

SpringBoot 开启Redis缓存及使用方法

设置序列化的Bean

SpringBoot 开启Redis缓存及使用方法

设置缓存的Bean

SpringBoot 开启Redis缓存及使用方法

这里有必要解释一下

  • cacheNames.add() 这里我理解的是和controller进行绑定,毕竟很多controller的时候,这里可以确定到底那个controller开启缓存,以及每个controller对缓存的要求可能也不一样
  • configMap这里就是将我们对缓存的一些配置和命名空间进行关联
  • 设置缓存时间和禁止缓存空数据应该还好理解

编写业务Controller

  1. @RestController
  2. @RequestMapping("user")
  3. public class RedisCacheController {
  4. @Cacheable(value = "user",key = "#root.methodName+#root.args[0]")
  5. @GetMapping("findWord/{id}")
  6. public String findWord(@PathVariable String id) {
  7. System.out.println("Cacheing");
  8. HashMap<String, String> words = new HashMap<>();
  9. words.put("1", "java");
  10. words.put("2", "redis");
  11. words.put("3", "cache");
  12. return words.get(id);
  13. }
  14. }

@Cacheable一定要加在方法之上
value就是之前在RedisConfig中定义的命名空间,也是缓存保存的空间
key就是缓存保存的key,这里以方法名为key,但是为避免方法名重复导致的key重复,所以加入id,来避免重复

关于缓存的其他注解

  • @CachePut

在支持Spring Cache的环境中,对于使用@Cacheale标注的方法,Spring在每次执行前都会检查Cache中是否存在相同的key的缓存元素,如果存在就不再执行该方法,而是从缓存中获取结果直接进行返回,若不存在才会执行方法并将返回结果存入指定的缓存中

@Cacheput也可以生命一个方法支持缓存功能,与@Cacheable不同的是使用@CachePut标注的方法在执行并不会去检查缓存中是否存在之前执行过的结果,而是每次都会执行该方法,并将执行结果以键值对的形式存入缓存中。

  • @CacheEvict

CacheEvict是用来标注在需要清除缓存元素的方法或类上的。
当标记在一个类上时表示其中所有的方法的执行都会触发缓存的清除操作
@CacheEvict可以指定的属性有value、key、condition、allEntries和beforeInvocation。
其中value、key和condition的语义与@Cacheable对应的属性类似。即value表示清除操作是发生在哪些缓存(命名空间)上的
key表示要清除的是哪个key,如未指定则会谁用默认策略生成的key,condition表示清除操作发生的条件
allEntries属性
allEntries是boolean类型的,表示是否要清除缓存中的所有元素,默认为false,当指定为true时,会忽略指定的key
beforeInvocation属性
清除操作默认时在对应方法成功执行后触发的,即方法如果因为抛出异常而未能成功返回也不会触发清除操作
使用beforeInvocation可以改变触发清除操作的时间,当我们指定属性值为true时,Spring会在调用该方法之前清除缓存中的指定元素 编写启动类

就是传统的启动类

SpringBoot 开启Redis缓存及使用方法

检验结果

使用postman发送请求进行检测
第一次的时候可以看到控制台打印

SpringBoot 开启Redis缓存及使用方法

这说明方法执行了
但是第二次发送相同请求的时候,可以看到拿到了数据,但是方法没有执行,说明缓存有用了

SpringBoot 开启Redis缓存及使用方法
SpringBoot 开启Redis缓存及使用方法

好了,到此结束。

到此这篇关于SpringBoot 开启Redis缓存的文章就介绍到这了,更多相关SpringBoot Redis缓存内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/Dean_xiu/article/details/119721433