官方文档
https://docs.spring.io/spring-framework/docs/5.3.25/reference/html/integration.html#cache
一个应用里要使用缓存,一般要配置一个或几个CacheManager
一、引入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
二、配置文件配置使用redis作为缓存
spring.cache.type: redis
#还可以设置过期时间,单位毫秒
spring.cache.redis.time-to-live: 360000
三、测试使用缓存
根据官方文档,使用如下5个注释
For caching declaration, Spring’s caching abstraction provides a set of Java annotations:
@Cacheable: Triggers cache population.
(触发将数据保存到缓存的操作)
@CacheEvict: Triggers cache eviction.
(触发将数据从缓存删除的操作,支持失效模式)
如下举例,在更新分类的方法上加上该注释,参数为写入缓存时的value与key值,要与其一样。
当更新数据库时,就会删除该缓存。
@CacheEvict(value = "category",key = "'getLevel1Categorys'")
//若想清楚这一个区(value)的缓存的话,就可按如下下
@CacheEvict(value = "category",allEntries = true)