Redis 缓存 + Spring 的集成示例(转载)
Posted CodingBoy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis 缓存 + Spring 的集成示例(转载)相关的知识,希望对你有一定的参考价值。
1. 依赖包安装
pom.xml 加入:xxxxxxxxxx
10
1
<dependency>
2
<groupId>org.springframework.data</groupId>
3
<artifactId>spring-data-redis</artifactId>
4
<version>1.6.0.RELEASE</version>
5
</dependency>
6
<dependency>
7
<groupId>redis.clients</groupId>
8
<artifactId>jedis</artifactId>
9
<version>2.7.3</version>
10
</dependency>
2. Spring 项目集成进缓存支持
要启用缓存支持,我们需要创建一个新的 CacheManager bean。CacheManager 接口有很多实现,本文演示的是和 Redis 的集成,自然就是用 RedisCacheManager 了。Redis 不是应用的共享内存,它只是一个内存服务器,就像 mysql 似的,我们需要将应用连接到它并使用某种“语言”进行交互,因此我们还需要一个连接工厂以及一个 Spring 和 Redis 对话要用的 RedisTemplate,这些都是 Redis 缓存所必需的配置,把它们都放在自定义的 CachingConfigurerSupport 中:xxxxxxxxxx
41
1
package com.defonds.bdp.cache.redis;
2
3
import org.springframework.cache.CacheManager;
4
import org.springframework.cache.annotation.CachingConfigurerSupport;
5
import org.springframework.cache.annotation.EnableCaching;
6
import org.springframework.context.annotation.Bean;
7
import org.springframework.context.annotation.Configuration;
8
import org.springframework.data.redis.cache.RedisCacheManager;
9
import org.springframework.data.redis.connection.RedisConnectionFactory;
10
import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
11
import org.springframework.data.redis.core.RedisTemplate;
12
13
14
15
16
public class RedisCacheConfig extends CachingConfigurerSupport {
17
18
19
public JedisConnectionFactory redisConnectionFactory() {
20
JedisConnectionFactory redisConnectionFactory = new JedisConnectionFactory();
21
22
redisConnectionFactory.setHostName("192.168.1.166");
23
redisConnectionFactory.setPort(6379);
24
return redisConnectionFactory;
25
}
26
27
28
public RedisTemplate<String, String> redisTemplate(RedisConnectionFactory cf) {
29
RedisTemplate<String, String> redisTemplate = new RedisTemplate<String, String>();
30
redisTemplate.setConnectionFactory(cf);
31
return redisTemplate;
32
}
33
34
35
public CacheManager cacheManager(RedisTemplate redisTemplate) {
36
RedisCacheManager cacheManager = new RedisCacheManager(redisTemplate);
37
cacheManager.setDefaultExpiration(3000);
38
return cacheManager;
39
}
40
41
}
当然也别忘了把这些 bean 注入 Spring,不然配置无效。在 applicationContext.xml 中加入以下
xxxxxxxxxx
1
1
<context:component-scan base-package="com.defonds.bdp.cache.redis" />
3. 缓存某些方法的执行结果并缓存数据一致性保证
设置好缓存配置之后我们就可以使用 @Cacheable 注解来缓存方法执行的结果了,比如根据省份名检索城市的 provinceCities 方法和根据 city_code 检索城市的 searchCity 方法:CRUD (Create 创建,Retrieve 读取,Update 更新,Delete 删除) 操作中,除了 R 具备幂等性,其他三个发生的时候都可能会造成缓存结果和数据库不一致。为了保证缓存数据的一致性,在进行 CUD 操作的时候我们需要对可能影响到的缓存进行更新或者清除。
xxxxxxxxxx
43
1
// R
2
"provinceCities") (
3
public List<City> provinceCities(String province) {
4
logger.debug("province=" + province);
5
return this.cityMapper.provinceCities(province);
6
}
7
8
// R
9
"searchCity") (
10
public City searchCity(String city_code){
11
logger.debug("city_code=" + city_code);
12
return this.cityMapper.searchCity(city_code);
13
}
14
15
value = { "provinceCities"}, allEntries = true) (
16
public void insertCity(String city_code, String city_jb,
17
String province_code, String city_name,
18
String city, String province) {
19
City cityBean = new City();
20
cityBean.setCityCode(city_code);
21
cityBean.setCityJb(city_jb);
22
cityBean.setProvinceCode(province_code);
23
cityBean.setCityName(city_name);
24
cityBean.setCity(city);
25
cityBean.setProvince(province);
26
this.cityMapper.insertCity(cityBean);
27
}
28
// U
29
value = { "provinceCities", "searchCity" }, allEntries = true) (
30
public int renameCity(String city_code, String city_name) {
31
City city = new City();
32
city.setCityCode(city_code);
33
city.setCityName(city_name);
34
this.cityMapper.renameCity(city);
35
return 1;
36
}
37
38
// D
39
value = { "provinceCities", "searchCity" }, allEntries = true) (
40
public int deleteCity(String city_code) {
41
this.cityMapper.deleteCity(city_code);
42
return 1;
43
}
业务考虑,本示例用的都是 @CacheEvict 清除缓存。如果你的 CUD 能够返回 City 实例,也可以使用 @CachePut 更新缓存策略。
笔者推荐能用 @CachePut 的地方就不要用 @CacheEvict,因为后者将所有相关方法的缓存都清理掉,比如上面三个方法中的任意一个被调用了的话,provinceCities 方法的所有缓存将被清除。
xxxxxxxxxx
2
1
"users") (
2
以上是关于Redis 缓存 + Spring 的集成示例(转载)的主要内容,如果未能解决你的问题,请参考以下文章