当前位置:   article > 正文

SpringCache注解+集成Redis_spring redis cache 注解

spring redis cache 注解

Spring Cache是一个框架,提供了一层抽象,底层可以切换不同的cache实现 ,实现了基于注解的缓存功能 ,具体就是通过CacheManager接口来统一不同的缓存技术。CacheManager是Spring提供的各种缓存技术抽象接口。

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

CacheManager描述
EhCacheCacheManager使用EhCache作为缓存技术
GuavaCacheManager使用Google的GuavaCache作为缓存技术

RedisCacheManager

使用Redis作为缓存技术

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

  1. @Slf4j
  2. @SpringBootApplication
  3. @EnableCaching
  4. public class CacheDemoApplication {
  5. public static void main(String[] args) {
  6. SpringApplication.run(CacheDemoApplication.class,args);
  7. log.info("项目启动成功...");
  8. }
  9. }

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

  1. <!--spring data redis的maven坐标-->
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-data-redis</artifactId>
  5. </dependency>

Spring Cache 上下文数据

  

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

@CachePut注解

@CachePut 说明:

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

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

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

 在save方法上加注解@CachePut  

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

key的写法如下:

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

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

@CacheEvict注解

@CacheEvict 说明:

作用: 清理指定缓存

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

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

在 delete 方法上加注解@CacheEvict

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

@Cacheable注解

@Cacheable 说明:

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

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

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

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

缓存非null值

在@Cacheable注解中,提供了两个属性分别为: condition, unless 。

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

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

具体实现方式如下:

  1. /**
  2. * Cacheable:在方法执行前spring先查看缓存中是否有数据,如果有数据,则直接返回缓存数据;若没有数据,调用方法并将方法返回值放到缓存中
  3. * value:缓存的名称,每个缓存名称下面可以有多个key
  4. * key:缓存的key
  5. * condition:条件,满足条件时才缓存数据
  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 = userService.getById(id);
  12. return user;
  13. }

==注意: 此处,我们使用的时候只能够使用 unless, 因为在condition中,我们是无法获取到结果 #result的。

在list方法上加注解@Cacheable

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

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

集成Redis

在使用上述默认的ConcurrentHashMap做缓存时,服务重启之后,之前缓存的数据就全部丢失了,操作起来并不友好。在项目中使用,我们会选择使用redis来做缓存,主要需要操作以下几步:

1). pom.xml

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

2). application.yml

  1. spring:
  2. redis:
  3. host: 192.168.17.160
  4. port: 6379
  5. password: root
  6. database: 0 #redis默认数据库为0号,可手动选
  7. cache:
  8. redis:
  9. time-to-live: 1800000 #设置缓存过期时间,可选

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/919711
推荐阅读
相关标签
  

闽ICP备14008679号