redis spring缓存配置

标签: redis spring 缓存 | 发表时间:2015-03-07 23:13 | 作者:liuchangqing123
出处:http://blog.csdn.net
使用redis做缓存的思路是在spring的项目中配置拦截器,在service层做切面,在findXXX或者getXXX等方法上进行拦截判断是否缓存即可。

1.环境:spring 3.1.2 + spring data redis 1.0.0+ jedis 2.1.0

2.spring配置文件配置:

 <!-- jedis 配置 -->
    <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig" >
          <property name="maxIdle" value="${redis.maxIdle}" />
          <property name="maxActive" value="${redis.maxActive}" />
          <property name="maxWait" value="${redis.maxWait}" />
          <property name="testOnBorrow" value="${redis.testOnBorrow}" />
    </bean >

    <bean id="connectionFactory"
         class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory" >
          <property name="poolConfig" ref="poolConfig" />
          <property name="port" value="${redis.port}" />
          <property name="hostName" value="${redis.host}" />
          <property name="password" value="${redis.password}" />
          <property name="timeout" value="${redis.timeout}" ></property>
    </bean >
    <bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate" >
          <property name="connectionFactory" ref="connectionFactory" />
          <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 >
    <!-- cache配置 -->
    <bean id="methodCacheInterceptor" class="com.xxx.cache.MethodCacheInterceptor" >
          <property name="redisUtil" ref="redisUtil" />
    </bean >
    <bean id="redisUtil" class="com.xxx.framework.util.RedisUtil" >
          <property name="redisTemplate" ref="redisTemplate" />
    </bean >
    <bean id="methodCachePointCut"
         class="org.springframework.aop.support.RegexpMethodPointcutAdvisor" >
          <property name="advice" >
              <ref local="methodCacheInterceptor" />
          </property>
          <property name="patterns" >
              <list>
                  <!-- 需要缓存的方法 正则表达式 -->
                  <value> com\.xxx\..*\.service\. impl\..*list.*</value >
                  <value> com\.xxx\..*\.service\. impl\..*find.*</value >
                  <value> com\.xxx\..*\.service\. impl\..*get.*</value >
              </list>
          </property>
    </bean >

3.redis工具类

import java.io.Serializable;
import java.util.Set;
import java.util.concurrent.TimeUnit;

import org.apache.log4j.Logger;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ValueOperations;

/**
 * redis cache 工具类
 * 
 */
public final class RedisUtil {
private Logger logger = Logger.getLogger(RedisUtil.class);
private RedisTemplate<Serializable, Object> redisTemplate;

/**
* 批量删除对应的value
* 
* @param keys
*/
public void remove(final String... keys) {
for (String key : keys) {
remove(key);
}
}

/**
* 批量删除key
* 
* @param pattern
*/
public void removePattern(final String pattern) {
Set<Serializable> keys = redisTemplate.keys(pattern);
if (keys.size() > 0)
redisTemplate.delete(keys);
}

/**
* 删除对应的value
* 
* @param key
*/
public void remove(final String key) {
if (exists(key)) {
redisTemplate.delete(key);
}
}

/**
* 判断缓存中是否有对应的value
* 
* @param key
* @return
*/
public boolean exists(final String key) {
return redisTemplate.hasKey(key);
}

/**
* 读取缓存
* 
* @param key
* @return
*/
public Object get(final String key) {
Object result = null;
ValueOperations<Serializable, Object> operations = redisTemplate
.opsForValue();
result = operations.get(key);
return result;
}

/**
* 写入缓存
* 
* @param key
* @param value
* @return
*/
public boolean set(final String key, Object value) {
boolean result = false;
try {
ValueOperations<Serializable, Object> operations = redisTemplate
.opsForValue();
operations.set(key, value);
result = true;
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
/**
* 写入缓存
* 
* @param key
* @param value
* @return
*/
public boolean set(final String key, Object value,Long expireTime) {
boolean result = false;
try {
ValueOperations<Serializable, Object> operations = redisTemplate
.opsForValue();
operations.set(key, value);
redisTemplate.expire(key,expireTime,TimeUnit.SECONDS);
result = true;
} catch (Exception e) {
e.printStackTrace();
}
return result;
}

public void setRedisTemplate(
RedisTemplate<Serializable, Object> redisTemplate) {
this.redisTemplate = redisTemplate;
}
}

4.全局缓存拦截器

import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
import org.apache.log4j.Logger;

import com.xxx.framework.util.RedisUtil;

import framework.utils.string.StringUtil;

public class MethodCacheInterceptor implements MethodInterceptor {
    private Logger logger = Logger.getLogger(MethodCacheInterceptor. class);
    private RedisUtil redisUtil;
    private List<String> targetNamesList; // 不加入缓存的service名称
    private List<String> methodNamesList; // 不加入缓存的方法名称
    private Long defaultCacheExpireTime; //缓存默认的过期时间
    private Long xxxRecordManagerTime; //
    private Long xxxSetRecordManagerTime; //
    /**
     * 初始化读取不需要加入缓存的类名和方法名称
     */
    public MethodCacheInterceptor() {
          try {
             InputStream in = getClass().getClassLoader().getResourceAsStream("cacheConf.properties" );
             Properties p = new Properties();
             p.load(in);
              // 分割字符串
             String[] targetNames = p.getProperty("targetNames" ).split(",");
             String[] methodNames = p.getProperty("methodNames" ).split(",");
             
              //加载过期时间设置
              defaultCacheExpireTime = Long.valueOf(p.getProperty("defaultCacheExpireTime"));
              xxxRecordManagerTime = Long.valueOf(p.getProperty("com.service.impl.xxxRecordManager"));
              xxxSetRecordManagerTime = Long.valueOf(p.getProperty("com.service.impl.xxxSetRecordManager"));
              // 创建list
              targetNamesList = new ArrayList<String>(targetNames.length );
              methodNamesList = new ArrayList<String>(methodNames.length );
             Integer maxLen = targetNames. length > methodNames.length ? targetNames.length : methodNames.length;
              // 将不需要缓存的类名和方法名添加到list中
              for(int i = 0; i < maxLen; i++) {
                  if(i < targetNames.length ) {
                      targetNamesList.add(targetNames[i]);
                 }
                  if(i < methodNames.length ) {
                      methodNamesList.add(methodNames[i]);
                 }
             }
         } catch (Exception e) {
             e.printStackTrace();
         }
    }
    
    @Override
    public Object invoke(MethodInvocation invocation) throws Throwable {
         Object value = null;

         String targetName = invocation.getThis().getClass().getName();
         String methodName = invocation.getMethod().getName();
          // 不需要缓存的内容
          if (!isAddCache(StringUtil.subStrForLastDot(targetName), methodName)) {
              // 执行方法返回结果
              return invocation.proceed();
         }
         Object[] arguments = invocation.getArguments();
         String key = getCacheKey(targetName, methodName, arguments);
         System. out.println(key);

          try {
              // 判断是否有缓存
              if (redisUtil .exists(key)) {
                  return redisUtil .get(key);
             }
              // 写入缓存
             value = invocation.proceed();
              if (value != null) {
                  final String tkey = key;
                  final Object tvalue = value;
                  new Thread(new Runnable() {
                       @Override
                       public void run() {
                           if(tkey.startsWith("com.service.impl.xxxRecordManager" )){
                                redisUtil.set(tkey, tvalue,xxxRecordManagerTime );
                          } else if(tkey.startsWith("com.service.impl.xxxSetRecordManager" )){
                                redisUtil.set(tkey, tvalue,xxxSetRecordManagerTime );
                          } else{
                                redisUtil.set(tkey, tvalue,defaultCacheExpireTime );
                          }
                      }
                 }).start();
             }
         } catch (Exception e) {
             e.printStackTrace();
              if (value == null) {
                  return invocation.proceed();
             }
         }
          return value;
    }
    
    /**
     * 是否加入缓存
     * @return
     */
    private boolean isAddCache(String targetName, String methodName) {
          boolean flag = true;
          if(targetNamesList .contains(targetName) || methodNamesList.contains(methodName)) {
             flag = false;
         }
          return flag;
    }

    /**
     * 创建缓存key
     *
     * @param targetName
     * @param methodName
     * @param arguments
     */
    private String getCacheKey(String targetName, String methodName,
             Object[] arguments) {
         StringBuffer sbu = new StringBuffer();
        sbu.append(targetName).append( "_").append(methodName);
          if ((arguments != null) && (arguments.length != 0)) {
              for (int i = 0; i < arguments.length; i++) {
                 sbu.append( "_").append(arguments[i]);
             }
         }
          return sbu.toString();
    }

    public void setRedisUtil(RedisUtil redisUtil) {
          this.redisUtil = redisUtil;
    }
}

上面代码中掺杂了部分业务逻辑不是太好,可以继续优化一下哈。

5.redis.properties文件

redis.host=127.0.0.1
redis.port=6379
redis.password=
redis.maxIdle=100
redis.maxActive=300
redis.maxWait=1000
redis.testOnBorrow=true
redis.timeout=100000

6.cacheConf.properties文件

# 不需要加缓存的类和方法
# not add cache service name
targetNames=xxxRecordManager,xxxSetRecordManager,xxxStatisticsIdentificationManager
# not add cache method name
methodNames=

#设置过期时间
com.service.impl.xxxRecordManager= 60
com.service.impl.xxxSetRecordManager= 60
defaultCacheExpireTime=3600

7.注意拼接key时需要将相应的类生成toString方法,否则可能会出现序列化失败的错误。

作者:liuchangqing123 发表于2015/3/7 23:08:26 原文链接
阅读:0 评论:0 查看评论

相关 [redis spring 缓存] 推荐:

redis spring缓存配置

- - CSDN博客推荐文章
使用redis做缓存的思路是在spring的项目中配置拦截器,在service层做切面,在findXXX或者getXXX等方法上进行拦截判断是否缓存即可. 1.环境:spring 3.1.2 + spring data redis 1.0.0+ jedis 2.1.0. 2.spring配置文件配置:.

Spring Boot使用redis做数据缓存

- - ITeye博客
SysUser.class)); //请注意这里. 3 redis服务器配置. /** *此处的dao操作使用的是spring data jpa,使用@Cacheable可以在任意方法上,*比如@Service或者@Controller的方法上 */ public interface SysUserRepo1 extends CustomRepository {.

Spring AOP + Redis缓存数据库查询

- - 编程语言 - ITeye博客
我们希望能够将数据库查询结果缓存到Redis中,这样在第二次做同样的查询时便可以直接从redis取结果,从而减少数据库读写次数. 必须要做到与业务逻辑代码完全分离. 从缓存中读出的数据必须与数据库中的数据一致. 如何为一个数据库查询结果生成一个唯一的标识. Key),能唯一确定一个查询结果,同一个查询结果,一定能映射到同一个.

spring + redis 实现数据的缓存

- - ImportNew
(目的不是加快查询的速度,而是减少数据库的负担). 注意:jdies和commons-pool两个jar的版本是有对应关系的,注意引入jar包是要配对使用,否则将会报错. 因为commons-pooljar的目录根据版本的变化,目录结构会变. 前面的版本是org.apache.pool,而后面的版本是org.apache.pool2….

SpringSource发布Spring Data Redis 1.0.0

- - InfoQ cn
近日, SpringSource 发布了用于将Redis轻松集成到Java应用中的开源 库的首个稳定版. Redis是个由VMWare/SpringSource资助的键值存储,为一些高性能网站如GitHub与StackOverflow等所用. Redis是新近涌现的NoSQL数据存储之一,它关注于简单性与性能(整个数据集放在内存中).

Redis 缓存失效机制

- - 文章 – 伯乐在线
Redis缓存失效的故事要从EXPIRE这个命令说起,EXPIRE允许用户为某个key指定超时时间,当超过这个时间之后key对应的值会被清除,这篇文章主要在分析Redis源码的基础上站在Redis设计者的角度去思考Redis缓存失效的相关问题. Redis缓存失效机制是为应对缓存应用的一种很常见的场景而设计的,讲个场景:.

Redis客户端之Spring整合Jedis

- - 开源软件 - ITeye博客
1.下载相关jar包,并引入工程:. 2.将以下XML配置引入spring. 3.将shardedJedisPool注入相关的类中即可使用. * 设置一个key的过期时间(单位:秒). * @param key key值. * @param seconds 多少秒后过期. * @return 1:设置了过期时间 0:没有设置过期时间/不能设置过期时间.

spring boot + redis 实现session共享

- - 编程语言 - ITeye博客
这次带来的是spring boot + redis 实现session共享的教程. 在spring boot的文档中,告诉我们添加@EnableRedisHttpSession来开启spring session支持,配置如下:. 而@EnableRedisHttpSession这个注解是由spring-session-data-redis提供的,所以在pom.xml文件中添加: .

使用Redis作为一个LRU缓存

- - 并发编程网 - ifeve.com
原文链接  译者:flychao88. 当用Redis作为一个LRU存储时,有些时候是比较方便的,在你增添新的数据时会自动驱逐旧的数据. 这种行为在开发者论坛是非常有名的,因为这是流行的memcached系统的默认行为. LRU实际上只是支持驱逐的方式之一. 这页包含更多一般的Redis maxmemory指令的话题用于限制内存使用到一个定额,同时它也深入的涵盖了Redis所使用的LRU算法,实际上是精确LRU的近似值.

redis数据结构缓存运用

- - 企业架构 - ITeye博客
之前redis已经描述了redis 的基本作用与用处, 这一篇主要讲述redis运用场景以及分片,和spring整合. redis 存储数据结构大致5种,String 普通键值对,用的比较多. HASH针对 key 唯一标识 hashmap 键值对运用也比较多 list set 当然是集合运用 sortedSet 排序集合使用.