Spring Cache是一个框架,实现了基于注解的缓存功能,只需要简单地加一个注解,就能实现缓存功能,大大简化我们在业务中操作缓存的代码。
使用Spring Cache操作redis很简单,首先pom文件中引入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
第二步配置文件中添加
application.yml我这是yml配置文件
spring:
redis:
host: 192.168.200.200
port: 6379
password: root@123456
database: 0
cache:
redis:
time-to-live: 1800000 #设置缓存过期时间,可选
spring顶格写,配置级别别搞错咯
第三步 引导类上加@EnableCaching
第4步就是2个注解了
1:@CacheEvict注解
@CacheEvict 说明:
作用: 清理指定缓存
value: 缓存的名称,每个缓存名称下面可以有多个key
key: 缓存的key ———-> 支持Spring的表达式语言SPEL语法
简单的例子:
/**
* CacheEvict:清理指定缓存
* value:缓存的名称,每个缓存名称下面可以有多个key
* key:缓存的key
*/
@CacheEvict(value = “userCache”,key = “#p0”) //#p0 代表第一个参数
//@CacheEvict(value = “userCache”,key = “#root.args[0]”) //#root.args[0] 代表第一个参数
//@CacheEvict(value = “userCache”,key = “#id”) //#id 代表变量名为id的参数
@DeleteMapping(“/{id}”)
public void delete(@PathVariable Long id){
userService.removeById(id);
}
还有个清除所有
@CacheEvict(value = “setmealCache”,allEntries = true) //清除setmealCache名称下,所有的缓存数据
第2个注解:
@Cacheable,一般加在查询方法上
/**
* Cacheable:在方法执行前spring先查看缓存中是否有数据,如果有数据,则直接返回缓存数据;若没有数据,调用方法并将方法返回值放到缓存中
* value:缓存的名称,每个缓存名称下面可以有多个key
* key:缓存的key
* condition:条件,满足条件时才缓存数据
* unless:满足条件则不缓存,result返回值
*/
@Cacheable(value = “userCache”,key = “#id”, unless = “#result == null”)
@GetMapping(“/{id}”)
public User getById(@PathVariable Long id){
User user = userService.getById(id);
return user;
}
原创文章,作者:kirin,如若转载,请注明出处:https://blog.ytso.com/244455.html