引入依賴庫
在pom中引入依賴庫,如下
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
註解使用
@Cacheable
@Cacheable("product")
@Cacheable(value = {"product","order"}, key = "#root.targetClass+`-`+#id")
@Cacheable(value = "product", key = "#root.targetClass+`-`+#id")
自定義cacheManager
@Cacheable(value = "product", key = "#root.targetClass+`-`+#id” cacheManager="cacheManager")
@CachePut
應用到寫資料的方法上,如新增/修改方法
@CachePut(value = "product", key = "#root.targetClass+`-`+#product.id")
@CacheEvict
即應用到移除資料的方法上,如刪除方法
@CacheEvict(value = "product", key = "#root.targetClass+`-`+#id")
提供的SpEL上下文資料
Spring Cache提供了一些供我們使用的SpEL上下文資料,下表直接摘自Spring官方文件:
名字 | 位置 | 描述 | 示例 |
---|---|---|---|
methodName | root物件 | 當前被呼叫的方法名 | #root.methodName |
method | root物件 | 當前被呼叫的方法 | #root.method.name |
target | root物件 | 當前被呼叫的目標物件 | #root.target |
targetClass | root物件 | 當前被呼叫的目標物件類 | #root.targetClass |
args | root物件 | 當前被呼叫的方法的引數列表 | #root.args[0] |
caches | root物件 | 當前方法呼叫使用的快取列表(如@Cacheable(value={“cache1”, “cache2”})),則有兩個cache | #root.caches[0].name |
argument name | 執行上下文 | 當前被呼叫的方法的引數,如findById(Long id),我們可以通過#id拿到引數 | #user.id |
result | 執行上下文 | 方法執行後的返回值(僅當方法執行之後的判斷有效,如‘unless’,`cache evict`的beforeInvocation=false) | #result |
自定義Cache配置
@Configuration
@EnableCaching
public class RedisConfig extends CachingConfigurerSupport {
/**
* 自定義redis key值生成策略
*/
@Bean
@Override
public KeyGenerator keyGenerator() {
return (target, method, params) -> {
StringBuilder sb = new StringBuilder();
sb.append(target.getClass().getName());
sb.append(method.getName());
for (Object obj : params) {
sb.append(obj.toString());
}
return sb.toString();
};
}
@Bean
public RedisTemplate<String, String> redisTemplate(RedisConnectionFactory factory) {
ObjectMapper om = new ObjectMapper();
om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
//redis序列化
Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
jackson2JsonRedisSerializer.setObjectMapper(om);
StringRedisTemplate template = new StringRedisTemplate(factory);
template.setValueSerializer(jackson2JsonRedisSerializer);
template.afterPropertiesSet();
return template;
}
/**
* 自定義CacheManager
*/
@Bean
public CacheManager cacheManager(RedisTemplate redisTemplate) {
//全域性redis快取過期時間
RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig().entryTtl(Duration.ofDays(1));
RedisCacheWriter redisCacheWriter = RedisCacheWriter.nonLockingRedisCacheWriter(redisTemplate.getConnectionFactory());
return new RedisCacheManager(redisCacheWriter, redisCacheConfiguration);
}
}