`

Redis 缓存 + Spring 的集成示例

 
阅读更多
http://blog.csdn.net/defonds/article/details/48716161

《整合 spring 4(包括mvc、context、orm) + mybatis 3 示例》一文简要介绍了最新版本的 Spring MVC、IOC、MyBatis ORM 三者的整合以及声明式事务处理。现在我们需要把缓存也整合进来,缓存我们选用的是 Redis,本文将在该文示例基础上介绍 Redis 缓存 + Spring 的集成。关于 Redis 服务器的搭建请参考博客《Redhat5.8 环境下编译安装 Redis 并将其注册为系统服务》。
1. 依赖包安装
pom.xml 加入:
[html] view plain copy print?
<!-- redis cache related.....start --> 
<dependency> 
    <groupId>org.springframework.data</groupId> 
    <artifactId>spring-data-redis</artifactId> 
    <version>1.6.0.RELEASE</version> 
</dependency> 
<dependency> 
    <groupId>redis.clients</groupId> 
    <artifactId>jedis</artifactId> 
    <version>2.7.3</version> 
</dependency> 
<!-- redis cache related.....end --> 

2. Spring 项目集成进缓存支持
要启用缓存支持,我们需要创建一个新的 CacheManager bean。CacheManager 接口有很多实现,本文演示的是和 Redis 的集成,自然就是用 RedisCacheManager 了。Redis 不是应用的共享内存,它只是一个内存服务器,就像 MySql 似的,我们需要将应用连接到它并使用某种“语言”进行交互,因此我们还需要一个连接工厂以及一个 Spring 和 Redis 对话要用的 RedisTemplate,这些都是 Redis 缓存所必需的配置,把它们都放在自定义的 CachingConfigurerSupport 中:
[java] view plain copy print?
/**
* File Name:RedisCacheConfig.java
*
* Copyright Defonds Corporation 2015 
* All Rights Reserved
*
*/ 
package com.defonds.bdp.cache.redis; 
 
import org.springframework.cache.CacheManager; 
import org.springframework.cache.annotation.CachingConfigurerSupport; 
import org.springframework.cache.annotation.EnableCaching; 
import org.springframework.context.annotation.Bean; 
import org.springframework.context.annotation.Configuration; 
import org.springframework.data.redis.cache.RedisCacheManager; 
import org.springframework.data.redis.connection.RedisConnectionFactory; 
import org.springframework.data.redis.connection.jedis.JedisConnectionFactory; 
import org.springframework.data.redis.core.RedisTemplate; 
 
/**

* Project Name:bdp 
* Type Name:RedisCacheConfig 
* Type Description:
*  Author:Defonds
* Create Date:2015-09-21

* @version

*/ 
@Configuration 
@EnableCaching 
public class RedisCacheConfig extends CachingConfigurerSupport { 
 
    @Bean 
    public JedisConnectionFactory redisConnectionFactory() { 
        JedisConnectionFactory redisConnectionFactory = new JedisConnectionFactory(); 
 
        // Defaults 
        redisConnectionFactory.setHostName("192.168.1.166"); 
        redisConnectionFactory.setPort(6379); 
        return redisConnectionFactory; 
    } 
 
    @Bean 
    public RedisTemplate<String, String> redisTemplate(RedisConnectionFactory cf) { 
        RedisTemplate<String, String> redisTemplate = new RedisTemplate<String, String>(); 
        redisTemplate.setConnectionFactory(cf); 
        return redisTemplate; 
    } 
 
    @Bean 
    public CacheManager cacheManager(RedisTemplate redisTemplate) { 
        RedisCacheManager cacheManager = new RedisCacheManager(redisTemplate); 
 
        // Number of seconds before expiration. Defaults to unlimited (0) 
        cacheManager.setDefaultExpiration(3000); // Sets the default expire time (in seconds) 
        return cacheManager; 
    } 
     


当然也别忘了把这些 bean 注入 Spring,不然配置无效。在 applicationContext.xml 中加入以下:
[html] view plain copy print?
<context:component-scan base-package="com.defonds.bdp.cache.redis" /> 

3. 缓存某些方法的执行结果
设置好缓存配置之后我们就可以使用 @Cacheable 注解来缓存方法执行的结果了,比如根据省份名检索城市的 provinceCities 方法和根据 city_code 检索城市的 searchCity 方法:
[java] view plain copy print?
// R 
@Cacheable("provinceCities") 
public List<City> provinceCities(String province) { 
    logger.debug("province=" + province); 
    return this.cityMapper.provinceCities(province); 

 
// R 
@Cacheable("searchCity") 
public City searchCity(String city_code){ 
    logger.debug("city_code=" + city_code); 
    return this.cityMapper.searchCity(city_code);    


4. 缓存数据一致性保证
CRUD (Create 创建,Retrieve 读取,Update 更新,Delete 删除) 操作中,除了 R 具备幂等性,其他三个发生的时候都可能会造成缓存结果和数据库不一致。为了保证缓存数据的一致性,在进行 CUD 操作的时候我们需要对可能影响到的缓存进行更新或者清除。
[java] view plain copy print?
// C 
@CacheEvict(value = { "provinceCities"}, allEntries = true) 
public void insertCity(String city_code, String city_jb,  
        String province_code, String city_name, 
        String city, String province) { 
    City cityBean = new City(); 
    cityBean.setCityCode(city_code); 
    cityBean.setCityJb(city_jb); 
    cityBean.setProvinceCode(province_code); 
    cityBean.setCityName(city_name); 
    cityBean.setCity(city); 
    cityBean.setProvince(province); 
    this.cityMapper.insertCity(cityBean); 

// U 
@CacheEvict(value = { "provinceCities", "searchCity" }, allEntries = true) 
public int renameCity(String city_code, String city_name) { 
    City city = new City(); 
    city.setCityCode(city_code); 
    city.setCityName(city_name); 
    this.cityMapper.renameCity(city); 
    return 1; 

 
// D 
@CacheEvict(value = { "provinceCities", "searchCity" }, allEntries = true) 
public int deleteCity(String city_code) { 
    this.cityMapper.deleteCity(city_code); 
    return 1; 


业务考虑,本示例用的都是 @CacheEvict 清除缓存。如果你的 CUD 能够返回 City 实例,也可以使用 @CachePut 更新缓存策略。笔者推荐能用 @CachePut 的地方就不要用 @CacheEvict,因为后者将所有相关方法的缓存都清理掉,比如上面三个方法中的任意一个被调用了的话,provinceCities 方法的所有缓存将被清除。
5. 自定义缓存数据 key 生成策略
对于使用 @Cacheable 注解的方法,每个缓存的 key 生成策略默认使用的是参数名+参数值,比如以下方法:
[java] view plain copy print?
@Cacheable("users") 
public User findByUsername(String username) 

这个方法的缓存将保存于 key 为 users~keys 的缓存下,对于 username 取值为 "赵德芳" 的缓存,key 为 "username-赵德芳"。一般情况下没啥问题,二般情况如方法 key 取值相等然后参数名也一样的时候就出问题了,如:
[java] view plain copy print?
@Cacheable("users") 
public Integer getLoginCountByUsername(String username) 

这个方法的缓存也将保存于 key 为 users~keys 的缓存下。对于 username 取值为 "赵德芳" 的缓存,key 也为 "username-赵德芳",将另外一个方法的缓存覆盖掉。
解决办法是使用自定义缓存策略,对于同一业务(同一业务逻辑处理的方法,哪怕是集群/分布式系统),生成的 key 始终一致,对于不同业务则不一致:
[java] view plain copy print?
@Bean 
public KeyGenerator customKeyGenerator() { 
    return new KeyGenerator() { 
        @Override 
        public Object generate(Object o, Method method, Object... objects) { 
            StringBuilder sb = new StringBuilder(); 
            sb.append(o.getClass().getName()); 
            sb.append(method.getName()); 
            for (Object obj : objects) { 
                sb.append(obj.toString()); 
            } 
            return sb.toString(); 
        } 
    }; 


于是上述两个方法,对于 username 取值为 "赵德芳" 的缓存,虽然都还是存放在 key 为 users~keys 的缓存下,但由于 key 分别为 "类名-findByUsername-username-赵德芳" 和 "类名-getLoginCountByUsername-username-赵德芳",所以也不会有问题。
这对于集群系统、分布式系统之间共享缓存很重要,真正实现了分布式缓存。
笔者建议:缓存方法的 @Cacheable 最好使用方法名,避免不同的方法的 @Cacheable 值一致,然后再配以以上缓存策略。
6. 缓存的验证
6.1 缓存的验证
为了确定每个缓存方法到底有没有走缓存,我们打开了 MyBatis 的 SQL 日志输出,并且为了演示清楚,我们还清空了测试用 Redis 数据库。
先来验证 provinceCities 方法缓存,Eclipse 启动 tomcat 加载项目完毕,使用 JMeter 调用 /bdp/city/province/cities.json 接口:
使用 JMeter 调用 /bdp/city/province/cities.json 接口.png
Eclipse 控制台输出如下:
Eclipse 控制台输出如下.png
说明这一次请求没有命中缓存,走的是 db 查询。JMeter 再次请求,Eclipse 控制台输出:
Eclipse 控制台输出
标红部分以下是这一次请求的 log,没有访问 db 的 log,缓存命中。查看本次请求的 Redis 存储情况:
查看本次请求的 Redis 存储情况.png
同样可以验证 city_code 为 1492 的 searchCity 方法的缓存是否有效:
同样可以验证 city_code 为 1492 的 searchCity 方法的缓存是否有效.png
图中标红部分是 searchCity 的缓存存储情况。
6.2 缓存一致性的验证
先来验证 insertCity 方法的缓存配置,JMeter 调用 /bdp/city/create.json 接口:
JMeter 调用 /bdp/city/create.json 接口.png
之后看 Redis 存储:
之后看 Redis 存储
可以看出 provinceCities 方法的缓存已被清理掉,insertCity 方法的缓存奏效。
然后验证 renameCity 方法的缓存配置,JMeter 调用 /bdp/city/rename.json 接口:
JMeter 调用 /bdp/city/rename.json 接口.png
之后再看 Redis 存储:
之后再看 Redis 存储.png
searchCity 方法的缓存也已被清理,renameCity 方法的缓存也奏效。
7. 注意事项
要缓存的 Java 对象必须实现 Serializable 接口,因为 Spring 会将对象先序列化再存入 Redis,比如本文中的 com.defonds.bdp.city.bean.City 类,如果不实现 Serializable 的话将会遇到类似这种错误:nested exception is java.lang.IllegalArgumentException: DefaultSerializer requires a Serializable payload but received an object of type [com.defonds.bdp.city.bean.City]]。
缓存的生命周期我们可以配置,然后托管 Spring CacheManager,不要试图通过 redis-cli 命令行去管理缓存。比如 provinceCities 方法的缓存,某个省份的查询结果会被以 key-value 的形式存放在 Redis,key 就是我们刚才自定义生成的 key,value 是序列化后的对象,这个 key 会被放在 key 名为 provinceCities~keys key-value 存储中,参考下图"provinceCities 方法在 Redis 中的缓存情况"。可以通过 redis-cli 使用 del 命令将 provinceCities~keys 删除,但每个省份的缓存却不会被清除。
CacheManager 必须设置缓存过期时间,否则缓存对象将永不过期,这样做的原因如上,避免一些野数据“永久保存”。此外,设置缓存过期时间也有助于资源利用最大化,因为缓存里保留的永远是热点数据。
缓存适用于读多写少的场合,查询时缓存命中率很低、写操作很频繁等场景不适宜用缓存。
provinceCities方法在Redis中的存储.png
后记
本文完整 Eclipse 下的开发项目示例已上传 CSDN 资源,有兴趣的朋友可以去下载下来参考:http://download.csdn.net/detail/defonds/9137505。
参考资料
Caching Data with Spring
35. Cache Abstraction Part VII. Integration
Caching Data in Spring Using Redis
Caching with Spring Data Redis
spring-redis-caching-example
分享到:
评论

相关推荐

    Redis缓存+Spring的集成示例

    Redis缓存+Spring的集成示例 Redis缓存+Spring的集成示例Redis缓存+Spring的集成示例 Redis缓存+Spring的集成示例

    Redis 缓存 + Spring 的集成示例 源码分享!.zip

    Redis 缓存 + Spring 的集成示例 源码分享! Redis 缓存 + Spring 的集成示例。 本资源是一个最新 spring4 + mybatis3 + Redis 缓存集成的一个简单的 demo,也是...Redis缓存 Redis Spring+Redis Spring缓存 缓存集成

    spring分布式+redis3+nosql-最终版源码

    综上所述,这个"spring分布式+redis3+nosql-最终版源码"项目为开发者提供了一个完整的示例,展示了如何利用Spring构建分布式系统,结合Redis 3实现高效缓存,以及使用NoSQL数据库处理大量数据。通过对这些源码的学习...

    详解Redis 缓存 + Spring 的集成示例

    总结起来,集成Redis缓存到Spring项目中,主要包括以下几个步骤: 1. 添加Redis和Spring Data Redis的依赖。 2. 配置`RedisCacheConfig`,创建`JedisConnectionFactory`、`RedisTemplate`和`RedisCacheManager`的...

    redis+spring jedis方式

    【Redis与Spring集成】 Redis,一个高性能的键值对存储系统,常被用作数据库、缓存和消息中间件。其高效性能得益于内存存储和基于键值的数据结构。Spring Data Redis是Spring框架的一个模块,目的是简化Redis在Java...

    springmvc+shiro+spring+hibernate+redis缓存管理示例

    本示例项目"springmvc+shiro+spring+hibernate+redis缓存管理示例"提供了一个全面的框架整合实例,它将几个关键的技术组件融合在一起,旨在帮助开发者实现更优的性能和安全性。以下是关于这些技术组件及其在项目中的...

    springBoot集成redis

    本文将详细介绍如何在Spring Boot项目中集成Redis和MyBatis,以实现数据缓存和数据库操作。 首先,为了在Spring Boot项目中引入Redis,我们需要在`pom.xml`文件中添加Spring Data Redis依赖: ```xml &lt;groupId&gt;...

    Redis+Spring实例

    Redis+Spring实例是一个结合了两种流行技术的项目,旨在演示如何在Java应用中集成和使用Redis作为缓存系统。Redis是一种高性能的键值数据存储,常用于缓存、消息代理和分布式数据结构服务。而Spring框架是Java企业级...

    redis缓存服务器Nginx+Tomcat+redis+MySQL实现session会话共享

    "redis缓存服务器Nginx+Tomcat+redis+MySQL实现session会话共享"的主题旨在探讨如何利用这些技术组件来实现这一目标。以下是相关知识点的详细说明: **Redis**:Redis是一个高性能的键值数据存储系统,常用于做缓存...

    redis缓存的示例代码

    - `cache_redis-demo`压缩包中的代码可能包含了一个简单的Spring Boot项目,实现了上述的Redis缓存功能。 - 可能包括了配置类(如`RedisConfig.java`)、业务服务类(如`BookService.java`)和对应的测试类。 - ...

    使用maven简单搭建Spring mvc + redis缓存

    本文将详细讲解如何使用Maven来简单搭建一个集成了Spring MVC和Redis缓存的项目。 首先,让我们从Maven开始。Maven是一个项目管理工具,它帮助开发者管理依赖、构建项目以及执行自动化测试。在创建新项目时,我们...

    Springboot+Redis+Dubbo+Rocketmq

    标题 "Springboot+Redis+Dubbo+Rocketmq" 暗示了这是一个关于构建分布式系统的技术组合,其中Springboot作为基础框架,Redis用于缓存管理,Dubbo是服务治理框架,而Rocketmq则是消息中间件。现在,我们将深入探讨...

    SpringMVC+maven+redis集成示例

    3. **高性能缓存**:集成redis后,可以将频繁访问的数据存储在内存中,减少数据库I/O,显著提升系统性能。 4. **灵活扩展**:redis提供的多种数据结构和高级功能,如发布订阅、事务、地理空间索引等,为应用扩展...

    ssm+redis和ssm+redis+shiro源码

    "redisdemo"可能是一个包含Redis示例代码的项目,开发者可以通过这个项目了解如何在Java应用中集成和使用Redis。而"sys"可能代表系统的相关模块,例如用户管理、角色管理、权限管理等,这些通常会涉及到Shiro的使用...

    Spring集成Redis进行数据缓存

    在压缩包文件“Spring基于注解整合Redis”中,包含了具体的配置文件、Java代码示例,以及可能的测试用例,读者可以通过研究这些文件,进一步理解Spring如何与Redis进行集成以及如何使用注解进行缓存管理。...

    SpringMvc集成Redis项目完整示例

    在本项目中,"SpringMvc集成Redis项目完整示例" 提供了一个全面的教程,教你如何将Spring MVC框架与Redis缓存系统相结合。这个示例包括了Web应用程序的实例以及独立的Java测试案例,无需启动Web服务器即可进行测试。...

    Springboot+redis+mybatisplus实例

    在IT行业中,Spring Boot、Redis和MyBatis-Plus是三个非常重要的技术组件,它们各自在不同的领域发挥着关键作用。下面将详细讲解这三个技术及其整合应用。 **Spring Boot** Spring Boot是由Pivotal团队提供的全新...

    springboot-mybatis-redis缓存集成

    6. Redis缓存配置:在`@Configuration`类中配置RedisTemplate和StringRedisTemplate,用于操作Redis。 7. 使用缓存:在需要缓存的方法上使用`@Cacheable`注解,指定缓存的key和value生成策略。 8. 清除缓存:使用`@...

    销售系统项目,spring+spring mvc+mybatis+dubbo+kafka+redis+maven.zip

    【标题】"销售系统项目,spring+spring mvc+mybatis+dubbo+kafka+redis+maven.zip" 提供了一个综合的IT解决方案,涉及到的技术栈主要包括Spring、Spring MVC、MyBatis、Dubbo、Kafka、Redis以及Maven。这个项目采用...

Global site tag (gtag.js) - Google Analytics