简述
Spring Cache是一种抽象,使缓存的实现变得更加灵活。它可以与各种缓存提供者集成,如Ehcache、Redis、Gemfire等。Spring Cache通过对方法运行结果的缓存实现了对方法级别的缓存管理。
1、依赖
<!-- 启用Spring Cache缓存,提升效率 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
2、启动缓存
启动类上加@EnableCaching注解
@EnableCaching //开启SpringCache缓存
public class SystemRunApp {
public static void main(String[] args) {
SpringApplication.run(SystemRunApp.class);
}
}
3、设置缓存
@Cacheable,必须指定名字,日常可以以controller的请求链接未名字,必须唯一,否则就被覆盖
@Cacheable("/system/tenant/get") //缓存
@GetMapping("/system/tenant/get")
public R get(){
return R.success(tenantService.get());
}
4、清除缓存
@CacheEvict 可以指定多个key,数组形式
@CacheEvict({"/system/tenant/list","/system/tenant/get"}) //删除缓存
@PutMapping("/system/tenant/change/{id}")
public R change(@PathVariable Serializable id){
Tenant tenant = tenantService.getById(id);
tenant.setUpdateTime(new Date()); //技巧:时间最近的为当前租户
tenantService.saveOrUpdate(tenant);
return R.success();
}
附:清除缓存的两种方式
通常我们不希望缓存中的数据一直存在,需要在一定条件下将缓存清除,常见的清除缓存的方法有两种:
- 使用@CacheEvict注解
@CacheEvict注解用于标注需要清除缓存的方法。它有三个属性,分别是value、key和condition。
value用于指定缓存的名称,对应于@Cacheable和@CachePut注解的value属性。而key用于指定缓存的Key值。condition用于根据条件清除缓存。
- 使用CacheManager
通过CacheManager可以对缓存进行更加灵活的管理,可以选择性地清除某些缓存。方法如下:
1.注入CacheManager实例:
@Autowired
CacheManager cacheManager;
2.清除某个缓存:
cacheManager.getCache(“cacheName”).clear();