1、实现目标
通过redis缓存数据。(目的不是加快查询的速度,而是减少数据库的负担)
2、所需jar包
注意:jdies和commons-pool两个jar的版本是有对应关系的,注意引入jar包是要配对使用,否则将会报错。因为commons-pooljar的目录根据版本的变化,目录结构会变。前面的版本是org.apache.pool,而后面的版本是org.apache.pool2...
style="background-color: #0098dd; color: white; font-size: 17px; font-weight: bold;"3、redis简介
redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash(哈希类型)。这些数据类型都支持push/pop、add/remove及取交集并集和差集及更丰富的操作,而且这些操作都是原子性的。在此基础上,redis支持各种不同方式的排序。与memcached一样,为了保证效率,数据都是缓存在内存中。区别的是redis会周期性的把更新的数据写入磁盘或者把修改操作写入追加的记录文件,并且在此基础上实现了master-slave(主从)
3、编码实现
1)、配置的文件(properties)
将那些经常要变化的参数配置成独立的propertis,方便以后的修改redis.properties
?123456789 | redis.hostName= 127.0 . 0.1 redis.port= 6379 redis.timeout= 15000 redis.usePool= true redis.maxIdle= 6 redis.minEvictableIdleTimeMillis= 300000 redis.numTestsPerEvictionRun= 3 redis.timeBetweenEvictionRunsMillis= 60000 |
2)、spring-redis.xml
redis的相关参数配置设置。参数的值来自上面的properties文件
?12345678910111213141516171819202122232425262728293031 | <beans "http://www.springframework.org/schema/beans" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation= "http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd" default -autowire= "byName" > <bean id= "jedisPoolConfig"
= "redis.clients.jedis.JedisPoolConfig" > <!-- <property name= "maxIdle"
"6" ></property> <property name= "minEvictableIdleTimeMillis"
"300000" ></property> <property name= "numTestsPerEvictionRun"
"3" ></property> <property name= "timeBetweenEvictionRunsMillis"
"60000" ></property> --> <property name= "maxIdle"
"${redis.maxIdle}" ></property> <property name= "minEvictableIdleTimeMillis"
"${redis.minEvictableIdleTimeMillis}" ></property> <property name= "numTestsPerEvictionRun"
"${redis.numTestsPerEvictionRun}" ></property> <property name= "timeBetweenEvictionRunsMillis"
"${redis.timeBetweenEvictionRunsMillis}" ></property> </bean> <bean id= "jedisConnectionFactory"
= "org.springframework.data.redis.connection.jedis.JedisConnectionFactory"
"destroy" > <property name= "poolConfig"
"jedisPoolConfig" ></property> <property name= "hostName"
"${redis.hostName}" ></property> <property name= "port"
"${redis.port}" ></property> <property name= "timeout"
"${redis.timeout}" ></property> <property name= "usePool"
"${redis.usePool}" ></property> </bean> <bean id= "jedisTemplate"
= "org.springframework.data.redis.core.RedisTemplate" > <property name= "connectionFactory"
"jedisConnectionFactory" ></property> <property name= "keySerializer" > <bean class = "org.springframework.data.redis.serializer.StringRedisSerializer" /> </property> <property name= "valueSerializer" > <bean class = "org.springframework.data.redis.serializer.JdkSerializationRedisSerializer" /> </property> </bean> </beans> |
3)、applicationContext.xml
spring的总配置文件,在里面假如一下的代码
?123456789101112 | <bean class = "org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" > <property name= "systemPropertiesModeName"
"SYSTEM_PROPERTIES_MODE_OVERRIDE"
<property name= "ignoreResourceNotFound"
"true"
<property name= "locations" > <list> <value>classpath*:/META-INF/config/redis.properties</value> </list> </property> </bean> < import
"spring-redis.xml"
|
4)、web.xml
设置spring的总配置文件在项目启动时加载
?1234 | <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:/META-INF/applicationContext.xml</param-value><!-- --> </context-param> |
5)、redis缓存工具类
ValueOperations ——基本数据类型和实体类的缓存
ListOperations ——list的缓存
SetOperations ——set的缓存
HashOperations Map的缓存
?123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 | import
import
import
import
import
import
import
import import
import
import
import
import
import
import
import
import
import @Service public RedisCacheUtil<T> { @Autowired
( "jedisTemplate" ) public
/** * 缓存基本的对象,Integer、String、实体类等 * @param key 缓存的键值 * @param value 缓存的值 * @return 缓存的对象 */ public
{ ValueOperations<String,T> operation = redisTemplate.opsForValue(); operation.set(key,value); return
} /** * 获得缓存的基本对象。 * @param key 缓存键值 * @param operation * @return 缓存键值对应的数据 */ public
/*,ValueOperations<String,T> operation*/) { ValueOperations<String,T> operation = redisTemplate.opsForValue(); return operation.get(key); } /** * 缓存List数据 * @param key 缓存的键值 * @param dataList 待缓存的List数据 * @return 缓存的对象 */ public <T> ListOperations<String, T> setCacheList(String key,List<T> dataList) { ListOperations listOperation = redisTemplate.opsForList(); if(null != dataList) { int size = dataList.size(); for(int i = 0; i < size ; i ++) { listOperation.rightPush(key,dataList.get(i)); } } return listOperation; } /** * 获得缓存的list对象 * @param key 缓存的键值 * @return 缓存键值对应的数据 */ public <T> List<T> getCacheList(String key) { List<T> dataList = new ArrayList<T>(); ListOperations<String,T> listOperation = redisTemplate.opsForList(); Long size = listOperation.size(key); for(int i = 0 ; i < size ; i ++) { dataList.add((T) listOperation.leftPop(key)); } return dataList; } /** * 缓存Set * @param key 缓存键值 * @param dataSet 缓存的数据 * @return 缓存数据的对象 */ public <T> BoundSetOperations<String,T> setCacheSet(String key,Set<T> dataSet) { BoundSetOperations<String,T> setOperation = redisTemplate.boundSetOps(key); /*T[] t = (T[]) dataSet.toArray(); setOperation.add(t);*/ Iterator<T> it = dataSet.iterator(); while(it.hasNext()) { setOperation.add(it.next()); } return setOperation; } /** * 获得缓存的set * @param key * @param operation * @return */ public Set<T> getCacheSet(String key/*,BoundSetOperations<String,T> operation*/) { Set<T> dataSet = new HashSet<T>(); BoundSetOperations<String,T> operation = redisTemplate.boundSetOps(key); Long size = operation.size(); for(int i = 0 ; i < size ; i++) { dataSet.add(operation.pop()); } return dataSet; } /** * 缓存Map * @param key * @param dataMap * @return */ public <T> HashOperations<String,String,T> setCacheMap(String key,Map<String,T> dataMap) { HashOperations hashOperations = redisTemplate.opsForHash(); if(null != dataMap) { for (Map.Entry<String, T> entry : dataMap.entrySet()) { /*System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue()); */ hashOperations.put(key,entry.getKey(),entry.getValue()); } } return hashOperations; } /** * 获得缓存的Map * @param key * @param hashOperation * @return */ public <T> Map<String,T> getCacheMap(String key/*,HashOperations<String,String,T> hashOperation*/) { Map<String, T> map = redisTemplate.opsForHash().entries(key); /*Map<String, T> map = hashOperation.entries(key);*/ return map; } /** * 缓存Map * @param key * @param dataMap * @return */ public <T> HashOperations<String,Integer,T> setCacheIntegerMap(String key,Map<Integer,T> dataMap) { HashOperations hashOperations = redisTemplate.opsForHash(); if(null != dataMap) { for (Map.Entry<Integer, T> entry : dataMap.entrySet()) { /*System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue()); */ hashOperations.put(key,entry.getKey(),entry.getValue()); } } return hashOperations; } /** * 获得缓存的Map * @param key * @param hashOperation * @return */ public <T> Map<Integer,T> getCacheIntegerMap(String key/*,HashOperations<String,String,T> hashOperation*/) { Map<Integer, T> map = redisTemplate.opsForHash().entries(key); /*Map<String, T> map = hashOperation.entries(key);*/ return
} } |
6)、测试
这里测试我是在项目启动的时候到数据库中查找出国家和城市的数据,进行缓存,之后将数据去除。
6.1 项目启动时缓存数据
?1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 | import
import
import import
import
import
import
import import
import
import /* * 监听器,用于项目启动的时候初始化信息 */ @Service public StartAddCacheListener implements
{ //日志 private Logger log= Logger.getLogger(StartAddCacheListener. class ); @Autowired private
@Autowired private
@Override public onApplicationEvent(ContextRefreshedEvent event) { //spring 启动的时候缓存城市和国家等信息 if (event.getApplicationContext().getDisplayName().equals( "Root WebApplicationContext" )) { System.out.println( "\n\n\n_________\n\n缓存数据 \n\n ________\n\n\n\n" ); List<City> cityList = brandStoreService.selectAllCityMessage(); List<Country> countryList = brandStoreService.selectAllCountryMessage(); Map<Integer,City> cityMap = new
Map<Integer,Country> countryMap = new
int
int
for ( int
0
{ cityMap.put(cityList.get(i).getCity_id(), cityList.get(i)); } for ( int
0
{ countryMap.put(countryList.get(i).getCountry_id(), countryList.get(i)); } redisCache.setCacheIntegerMap( "cityMap" , cityMap); redisCache.setCacheIntegerMap( "countryMap" , countryMap); } } } |
6.2 获取缓存数据
?12345678910111213141516171819202122 | @Autowired private @RequestMapping ( "testGetCache" ) public testGetCache() { /*Map<String,Country> countryMap = redisCacheUtil1.getCacheMap("country"); Map<String,City> cityMap = redisCacheUtil.getCacheMap("city");*/ Map<Integer,Country> countryMap = redisCacheUtil1.getCacheIntegerMap( "countryMap" ); Map<Integer,City> cityMap = redisCacheUtil.getCacheIntegerMap( "cityMap" ); for ( int
{ System.out.println( "key = " + key + ",value="
} System.out.println( "------------city" ); for ( int
{ System.out.println( "key = " + key + ",value="
} } |
由于Spring在配置文件中配置的bean默认是单例的,所以只需要通过Autowired注入,即可得到原先的缓存类。
以上就是spring+redis实现数据缓存的方法,希望对大家的学习有所帮助。