SpringCache 使用Redis作为缓存技术的使用

时间:2024-10-14 20:49:51

介绍

Spring Cache是一个框架,实现了基于注解的缓存功能,只需要简单地加一个注解,就能实现缓存功能,大大简化我们在业务中操作缓存的代码。

Spring Cache只是提供了一层抽象,底层可以切换不同的cache实现。具体就是通过CacheManager接口来统一不同的缓存技术。CacheManager是Spring提供的各种缓存技术抽象接口。

针对不同的缓存技术需要实现不同的CacheManager:

CacheManager

描述

EhCacheCacheManager

使用EhCache作为缓存技术

GuavaCacheManager

使用Google的GuavaCache作为缓存技术

RedisCacheManager

使用Redis作为缓存技术

注解

SpringCache中提供了很多缓存操作的注解,常见的是以下的几个:

注解

说明

@EnableCaching

开启缓存注解功能 , 在启动类上添加

@Cacheable

在方法执行前spring先查看缓存中是否有数据,如果有数据,则直接返回缓存数据;若没有数据,调用方法并将方法返回值放到缓存中

@CachePut

将方法的返回值放到缓存中

@CacheEvict

将一条或多条数据从缓存中删除

在spring boot项目中,使用缓存技术只需在项目中导入相关缓存技术的依赖包,并在启动类上使用@EnableCaching开启缓存支持即可。

例如,使用Redis作为缓存技术,只需要导入Spring data Redis的maven坐标即可。

使用SpringCach主要注意key的设计, 因为缓存数据,可能要缓存多份,这些数据不能混了, 就需要根据key去区分,而这个key往往都是动态的, 比如说我动态的使用当前用户的id作为key, 那这个id怎么获得呢, 它就给我们提供了一种SPEL表达式语言, 通过这种方式就可以动态的获取用户di

比如获取对象的 id 的 key的写法如下: 都可以用 , 推荐使用 , 因为id是唯一的

# : #user指的是方法形参的名称, id指的是user的id属性 , 也就是使用user的id属性作为key ;

#: #user指的是方法形参的名称, name指的是user的name属性 ,也就是使用user的name属性作为key ;

# : #result代表方法返回值,该表达式 代表以返回对象的id属性作为key ;

# : #result代表方法返回值,该表达式 代表以返回对象的name属性作为key ;

使用redis来做缓存,主要需要操作以下几步:

在Spring Boot项目中使用 Spring Cache 的操作步骤 ( 使用redis缓存技术)

1. 导入maven坐标 : spring-boot-starter-cache , spring-boot-starter-data-redis

2. 配置 设置缓存有效期

3. 编写Redis的配置类RedisConfig,定义RedisTemplate

4. 在启动类上加入 @EnableCaching 注解 , 开启缓存注解功能

5. 在Controller的方法上加入@Cacheable . @CacheEvict , @CachePut 等注解 , 进行缓存操作

  1). 导入2个maven坐标 spring-boot-starter-cache , spring-boot-starter-data-redis

  1. <dependency>
  2. <groupId></groupId>
  3. <artifactId>spring-boot-starter-cache</artifactId>
  4. </dependency>
  5. <dependency>
  6. <groupId></groupId>
  7. <artifactId>spring-boot-starter-data-redis</artifactId>
  8. </dependency>

2). 配置  加入redis相关配置 , 设置缓存有效期

  1. spring:
  2. redis:
  3. host: 172.0.0.1
  4. port: 6379
  5. password: 123456 #自己的密码
  6. database: 0
  7. cache:
  8. redis:
  9. time-to-live: 1800000 #设置缓存过期时间30分钟,可选

3). 编写Redis的配置类RedisConfig,定义RedisTemplate

框架默认声明的RedisTemplate用的key和value的序列化方式是默认的 JdkSerializationRedisSerializer,如果key采用这种方式序列化,最终我们在测试时通过redis的图形化界面查询不是很方便, 所以使用我们自定义的RedisTemplate, key的序列化方式使用的是StringRedisSerializer, 也就是字符串形式

  1. import .CachingConfigurerSupport;
  2. import .Bean;
  3. import .Configuration;
  4. import .RedisConnectionFactory;
  5. import .RedisTemplate;
  6. import .StringRedisSerializer;
  7. @Configuration
  8. public class RedisConfig extends CachingConfigurerSupport {
  9. @Bean
  10. public RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory connectionFactory) {
  11. RedisTemplate<Object, Object> redisTemplate = new RedisTemplate<>();
  12. //默认的Key序列化器为:JdkSerializationRedisSerializer
  13. (new StringRedisSerializer());
  14. (connectionFactory);
  15. return redisTemplate;
  16. }
  17. }

4). 在启动类上加入 @EnableCaching 注解 , 开启缓存注解功能

5). 在Controller的方法上加入@Cacheable . @CacheEvict , @CachePut 等注解 , 进行缓存操作

  1. @Cacheble a注解说明:

作用: 在方法执行前,spring先查看缓存中是否有数据,如果有数据,则直接返回缓存数据;若没有数据,调用方法并将方法返回值放到缓存中

value: 缓存的名称,每个缓存名称下面可以有多个key

key: 缓存的key ----------> 支持Spring的表达式语言SPEL语法

condition : 表示满足什么条件, 再进行缓存 ;

unless : 表示满足条件则不缓存 ; 与上述的condition是反向的 ;

  1. /**
  2. * Cacheable:在方法执行前spring先查看缓存中是否有数据,如果有数据,则直接返回缓存数据;若没有数据,调用方法并将方法返回值放到缓存中
  3. * value:缓存的名称,每个缓存名称下面可以有多个key
  4. * key:缓存的key
  5. * condition:条件,满足条件时才缓存数据 , 不能使用result里面是没有result对象的,
  6. * unless:满足条件则不缓存
  7. */
  8. @Cacheable(value = "userCache",key = "#id", unless = "#result == null")
  9. @GetMapping("/{id}")
  10. public User getById(@PathVariable Long id){
  11. User user = (id);
  12. return user;
  13. }

在list方法上加注解@Cacheable

在list方法中进行查询时,有两个查询条件,如果传递了id,根据id查询; 如果传递了name, 根据name查询,那么我们缓存的key在设计的时候,就需要既包含id,又包含name。

  1. @Cacheable(value = "userCache",key = "# + '_' + #")
  2. @GetMapping("/list")
  3. public List<User> list(User user){
  4. LambdaQueryWrapper<User> queryWrapper = new LambdaQueryWrapper<>();
  5. (() != null,User::getId,());
  6. (() != null,User::getName,());
  7. List<User> list = (queryWrapper);
  8. return list;
  9. }

2. @CacheEvict 注解说明:

作用: 清理指定缓存

value: 缓存的名称,每个缓存名称下面可以有多个key

key: 缓存的key ----------> 支持Spring的表达式语言SPEL语法 , 可以动态的计算key的值

1). 在 delete 方法上加注解@CacheEvict 当我们在删除数据库user表的数据的时候,我们需要删除缓存中对应的数据,此时就可以使用@CacheEvict注解, 具体的使用方式如下:

  1. * CacheEvict:清理指定缓存
  2. * value:缓存的名称,每个缓存名称下面可以有多个key
  3. * key:缓存的key
  4. */
  5. //@CacheEvict(value = "userCache",key = "#p0") //#p0 代表第一个参数
  6. //@CacheEvict(value = "userCache",key = "#[0]") //#[0] 代表第一个参数
  7. @CacheEvict(value = "userCache",key = "#id") //#id 代表变量名为id的参数 推荐使用
  8. @DeleteMapping("/{id}")
  9. public void delete(@PathVariable Long id){
  10. (id);
  11. }

2). 在 update 方法上加注解@CacheEvict 在更新数据之后,数据库的数据已经发生了变更,我们需要将缓存中对应的数据删除掉,避免出现数据库数据与缓存数据不一致的情况。

  1. //@CacheEvict(value = "userCache",key = "#") //第一个参数的id属性
  2. //@CacheEvict(value = "userCache",key = "#[0].id") //第一个参数的id属性
  3. //@CacheEvict(value = "userCache",key = "#") //返回值的id属性
  4. @CacheEvict(value = "userCache",key = "#") //参数名为user参数的id属性
  5. @PutMapping
  6. public User update(User user){
  7. (user);
  8. return user;
  9. }

 3) 新增套餐  删除套装的清除缓存  allEntries = true

  1. /**
  2. * 删除套餐
  3. * @param ids
  4. * @return
  5. */
  6. @DeleteMapping
  7. @CacheEvict(value = "setmealCache",allEntries = true) //清除setmealCache名称下,所有的缓存数据
  8. public R<String> delete(@RequestParam List<Long> ids){
  9. ("ids:{}",ids);
  10. (ids);
  11. return ("套餐数据删除成功");
  12. }
  13. **
  14. * 新增套餐
  15. * @param setmealDto
  16. * @return
  17. */
  18. @PostMapping
  19. @CacheEvict(value = "setmealCache",allEntries = true) //清除setmealCache名称下,所有的缓存数据
  20. public R<String> save(@RequestBody SetmealDto setmealDto){
  21. ("套餐信息:{}",setmealDto);
  22. (setmealDto);
  23. return ("新增套餐成功");
  24. }

3 . @CachePut 注解说明:

作用: 将方法返回值,放入缓存

value: 缓存的名称, 每个缓存名称下面可以有很多key

key: 缓存的key ----------> 支持Spring的表达式语言SPEL语法

1). 在save方法上加注解@CachePut

save方法是用来保存用户信息的,我们希望在该用户信息保存到数据库的同时,也往缓存中缓存一份数据,可以在save方法上加上注解 @CachePut

  1. /**
  2. * CachePut:将方法返回值放入缓存 现在使用的缓存底层是Map
  3. * value:缓存的名称,每个缓存名称下面可以有多个key
  4. * key:缓存的key
  5. */
  6. @CachePut(value = "userCache", key = "#")
  7. @PostMapping
  8. public User save(User user){
  9. (user);
  10. return user;
  11. }