这里用的是SpringMVC-3.2.4和Ehcache-2.7.4
介绍二者集成之前,先介绍下GoogleCode上的ehcache-spring-annotations项目
- /**
- * ehcache-spring-annotations简介
- * @see ----------------------------------------------------------------------------------------------------------------
- * @see 关于Spring与Ehcache的集成,googlecode上有一个经Apache认证的开源项目叫做ehcache-spring-annotations
- * @see 目前已经到了1.2.0版本,它只是简化了Spring和Ehcache集成的复杂性(事实上我觉得完全没必要,因为它俩集成并不复杂)
- * @see 尽管如此还是要提一下,它的项目主页为https://code.google.com/p/ehcache-spring-annotations/
- * @see 这篇文章中描述了其用法http://blog.goyello.com/2010/07/29/quick-start-with-ehcache-annotations-for-spring/
- * @see ----------------------------------------------------------------------------------------------------------------
- * @see 1)使用时在项目中引入ehcache-spring-annotations-1.2.0.jar和guava-r09.jar两个jar文件
- * @see 2)然后在applicationContext.xml按照如下配置
- * @see <beans xmlns:ehcache="http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring"
- * @see xsi:schemaLocation="http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring
- * @see http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring/ehcache-spring-1.2.xsd">
- * @see <ehcache:annotation-driven/>
- * @see <ehcache:config cache-manager="cacheManager">
- * @see <ehcache:evict-expired-elements interval="60"/>
- * @see </ehcache:config>
- * @see <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
- * @see <property name="configLocation" value="classpath:ehcache.xml"/>
- * @see </bean>
- * @see 3)最后在需要缓存的方法上使用@Cacheable和@TriggersRemove注解即可
- * @see 经我亲测,@TriggersRemove(cacheName="..", when="..", removeAll=true)可移除缓存中的全部对象
- * @see 但若写成@TriggersRemove(cacheName="..", when="..")则不会移除缓存中的单一的或所有的对象,即缓存中的对象无变化
- * @see ----------------------------------------------------------------------------------------------------------------
- * @create Oct 3, 2013 4:56:35 PM
- * @author 玄玉<http://blog.csdn.net/jadyer>
- */
- <?xml version="1.0" encoding="UTF-8"?>
- <web-app version="2.5"
- xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
- http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
- <!-- SpringMVC核心分发器 -->
- <servlet>
- <servlet-name>SpringMVC</servlet-name>
- <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
- <init-param>
- <param-name>contextConfigLocation</param-name>
- <param-value>classpath:applicationContext.xml</param-value>
- </init-param>
- <load-on-startup>1</load-on-startup>
- </servlet>
- <servlet-mapping>
- <servlet-name>SpringMVC</servlet-name>
- <url-pattern>/</url-pattern>
- </servlet-mapping>
- </web-app>
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:mvc="http://www.springframework.org/schema/mvc"
- xmlns:cache="http://www.springframework.org/schema/cache"
- xmlns:context="http://www.springframework.org/schema/context"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
- http://www.springframework.org/schema/mvc
- http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
- http://www.springframework.org/schema/cache
- http://www.springframework.org/schema/cache/spring-cache-3.2.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-3.2.xsd">
- <context:component-scan base-package="com.jadyer"/>
- <!-- SpringMVC配置 -->
- <mvc:annotation-driven/>
- <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
- <property name="prefix" value="/"/>
- <property name="suffix" value=".jsp"/>
- </bean>
- <mvc:view-controller path="/" view-name="forward:/index.jsp"/>
- <!-- 缓存配置 -->
- <!-- 启用缓存注解功能(请将其配置在Spring主配置文件中) -->
- <cache:annotation-driven cache-manager="cacheManager"/>
- <!-- Spring自己的基于java.util.concurrent.ConcurrentHashMap实现的缓存管理器(该功能是从Spring3.1开始提供的) -->
- <!--
- <bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager">
- <property name="caches">
- <set>
- <bean name="myCache" class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean"/>
- </set>
- </property>
- </bean>
- -->
- <!-- 若只想使用Spring自身提供的缓存器,则注释掉下面的两个关于Ehcache配置的bean,并启用上面的SimpleCacheManager即可 -->
- <!-- Spring提供的基于的Ehcache实现的缓存管理器 -->
- <bean id="cacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
- <property name="configLocation" value="classpath:ehcache.xml"/>
- </bean>
- <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
- <property name="cacheManager" ref="cacheManagerFactory"/>
- </bean>
- </beans>
- <!-- Ehcache2.x的变化(取自https://github.com/springside/springside4/wiki/Ehcache) -->
- <!-- 1)最好在ehcache.xml中声明不进行updateCheck -->
- <!-- 2)为了配合BigMemory和Size Limit,原来的属性最好改名 -->
- <!-- maxElementsInMemory->maxEntriesLocalHeap -->
- <!-- maxElementsOnDisk->maxEntriesLocalDisk -->
- <ehcache>
- <diskStore path="java.io.tmpdir"/>
- <defaultCache
- maxElementsInMemory="1000"
- eternal="false"
- timeToIdleSeconds="120"
- timeToLiveSeconds="120"
- overflowToDisk="false"/>
- <cache name="myCache"
- maxElementsOnDisk="20000"
- maxElementsInMemory="2000"
- eternal="true"
- overflowToDisk="true"
- diskPersistent="true"/>
- </ehcache>
- <!--
- <diskStore>==========当内存缓存中对象数量超过maxElementsInMemory时,将缓存对象写到磁盘缓存中(需对象实现序列化接口)
- <diskStore path="">==用来配置磁盘缓存使用的物理路径,Ehcache磁盘缓存使用的文件后缀名是*.data和*.index
- name=================缓存名称,cache的唯一标识(ehcache会把这个cache放到HashMap里)
- maxElementsOnDisk====磁盘缓存中最多可以存放的元素数量,0表示无穷大
- maxElementsInMemory==内存缓存中最多可以存放的元素数量,若放入Cache中的元素超过这个数值,则有以下两种情况
- 1)若overflowToDisk=true,则会将Cache中多出的元素放入磁盘文件中
- 2)若overflowToDisk=false,则根据memoryStoreEvictionPolicy策略替换Cache中原有的元素
- eternal==============缓存中对象是否永久有效,即是否永驻内存,true时将忽略timeToIdleSeconds和timeToLiveSeconds
- timeToIdleSeconds====缓存数据在失效前的允许闲置时间(单位:秒),仅当eternal=false时使用,默认值是0表示可闲置时间无穷大,此为可选属性
- 即访问这个cache中元素的最大间隔时间,若超过这个时间没有访问此Cache中的某个元素,那么此元素将被从Cache中清除
- timeToLiveSeconds====缓存数据在失效前的允许存活时间(单位:秒),仅当eternal=false时使用,默认值是0表示可存活时间无穷大
- 即Cache中的某元素从创建到清楚的生存时间,也就是说从创建开始计时,当超过这个时间时,此元素将从Cache中清除
- overflowToDisk=======内存不足时,是否启用磁盘缓存(即内存中对象数量达到maxElementsInMemory时,Ehcache会将对象写到磁盘中)
- 会根据标签中path值查找对应的属性值,写入磁盘的文件会放在path文件夹下,文件的名称是cache的名称,后缀名是data
- diskPersistent=======是否持久化磁盘缓存,当这个属性的值为true时,系统在初始化时会在磁盘中查找文件名为cache名称,后缀名为index的文件
- 这个文件中存放了已经持久化在磁盘中的cache的index,找到后会把cache加载到内存
- 要想把cache真正持久化到磁盘,写程序时注意执行net.sf.ehcache.Cache.put(Element element)后要调用flush()方法
- diskExpiryThreadIntervalSeconds==磁盘缓存的清理线程运行间隔,默认是120秒
- diskSpoolBufferSizeMB============设置DiskStore(磁盘缓存)的缓存区大小,默认是30MB
- memoryStoreEvictionPolicy========内存存储与释放策略,即达到maxElementsInMemory限制时,Ehcache会根据指定策略清理内存
- 共有三种策略,分别为LRU(最近最少使用)、LFU(最常用的)、FIFO(先进先出)
- -->
- package com.jadyer.service;
- import java.util.Map;
- import java.util.concurrent.ConcurrentHashMap;
- import org.springframework.cache.annotation.CacheEvict;
- import org.springframework.cache.annotation.Cacheable;
- import org.springframework.stereotype.Service;
- /**
- * Cacheable注解负责将方法的返回值加入到缓存中
- * CacheEvict注解负责清除缓存(它的三个参数与@Cacheable的意思是一样的)
- * @see ----------------------------------------------------------------------------------------------------------
- * @see value------缓存位置的名称,不能为空,若使用EHCache则其值为ehcache.xml中的<cache name="myCache"/>
- * @see key--------缓存的Key,默认为空(表示使用方法的参数类型及参数值作为key),支持SpEL
- * @see condition--只有满足条件的情况才会加入缓存,默认为空(表示全部都加入缓存),支持SpEL
- * @see ----------------------------------------------------------------------------------------------------------
- * @see 该注解的源码位于spring-context-3.2.4.RELEASE-sources.jar中
- * @see Spring针对Ehcache支持的Java源码位于spring-context-support-3.2.4.RELEASE-sources.jar中
- * @see ----------------------------------------------------------------------------------------------------------
- * @create Oct 3, 2013 6:17:54 PM
- * @author 玄玉<http://blog.csdn.net/jadyer>
- */
- @Service
- public class UserService {
- private Map<String, String> usersData = new ConcurrentHashMap<String, String>();
- public UserService(){
- System.out.println("用户数据初始化..开始");
- usersData.put("2", "玄玉");
- usersData.put("3", "我的博客:http://blog.csdn.net/jadyer");
- System.out.println("用户数据初始化..完毕");
- }
- //将查询到的数据缓存到myCache中,并使用方法名称加上参数中的userNo作为缓存的key
- //通常更新操作只需刷新缓存中的某个值,所以为了准确的清除特定的缓存,故定义了这个唯一的key,从而不会影响其它缓存值
- @Cacheable(value="myCache", key="'get'+#userNo")
- public String get(String userNo){
- System.out.println("数据库中查到此用户号[" + userNo + "]对应的用户名为[" + usersData.get(userNo) + "]");
- return usersData.get(userNo);
- }
- @CacheEvict(value="myCache", key="'get'+#userNo")
- public void update(String userNo){
- System.out.println("移除缓存中此用户号[" + userNo + "]对应的用户名[" + usersData.get(userNo) + "]的缓存");
- }
- //allEntries为true表示清除value中的全部缓存,默认为false
- @CacheEvict(value="myCache", allEntries=true)
- public void removeAll(){
- System.out.println("移除缓存中的所有数据");
- }
- }
- package com.jadyer.controller;
- import javax.annotation.Resource;
- import org.springframework.stereotype.Controller;
- import org.springframework.ui.Model;
- import org.springframework.web.bind.annotation.PathVariable;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import com.jadyer.service.UserService;
- /**
- * 这里用到的jar如下
- * aopalliance.jar
- * commons-logging-1.1.2.jar
- * ehcache-2.7.4.jar
- * slf4j-api-1.7.5.jar
- * spring-aop-3.2.4.RELEASE.jar
- * spring-beans-3.2.4.RELEASE.jar
- * spring-context-3.2.4.RELEASE.jar
- * spring-context-support-3.2.4.RELEASE.jar
- * spring-core-3.2.4.RELEASE.jar
- * spring-expression-3.2.4.RELEASE.jar
- * spring-web-3.2.4.RELEASE.jar
- * spring-webmvc-3.2.4.RELEASE.jar
- * @create Oct 3, 2013 6:22:43 PM
- * @author 玄玉<http://blog.csdn.net/jadyer>
- */
- @Controller
- @RequestMapping("cacheTest")
- public class UserController {
- @Resource
- private UserService userService;
- @RequestMapping(value="/get/{userNo}", method=RequestMethod.GET)
- public String get(@PathVariable String userNo, Model model){
- String username = userService.get(userNo);
- model.addAttribute("username", username);
- return "getUser";
- }
- @RequestMapping(value="/update/{userNo}", method=RequestMethod.GET)
- public String update(@PathVariable String userNo, Model model){
- userService.update(userNo);
- model.addAttribute("userNo", userNo);
- return "updateUser";
- }
- @RequestMapping(value="/removeAll", method=RequestMethod.GET)
- public String removeAll(){
- userService.removeAll();
- return "removeAllUser";
- }
- }
- <%@ page language="java" pageEncoding="UTF-8"%>
- 查看<a href="<%=request.getContextPath()%>/cacheTest/get/2" target="_blank">2号</a>用户名
- <br/>
- <br/>
- 查看<a href="<%=request.getContextPath()%>/cacheTest/get/3" target="_blank">3号</a>用户名
- <br/>
- <br/>
- 更新<a href="<%=request.getContextPath()%>/cacheTest/update/3" target="_blank">3号</a>用户名
- <br/>
- <br/>
- 移除<a href="<%=request.getContextPath()%>/cacheTest/removeAll" target="_blank">所有</a>用户名
- <%@ page language="java" pageEncoding="UTF-8"%>
- 当前用户名为${username}
- <%@ page language="java" pageEncoding="UTF-8"%>
- 已更新${userNo}号用户
- <%@ page language="java" pageEncoding="UTF-8"%>
- 已移除所有用户
测试时,访问index.jsp之后点击各个链接并依次观察控制台输出即可
缓存有效果的特征是:第二次查询数据时不会访问数据库(即不打印日志)
相关推荐
在Spring中整合Ehcache,可以通过Spring的缓存抽象进行配置,定义缓存注解如`@Cacheable`、`@CacheEvict`、`@CachePut`来控制缓存的存取和清除。Ehcache的配置文件(ehcache.xml)可以指定缓存的大小、存活时间和...
**Spring MVC Ehcache 整合详解** 在Java Web开发中,Spring MVC是一个广泛使用的MVC框架,它提供了灵活的模型视图控制器架构,方便我们构建可维护、高性能的应用程序。而Ehcache则是一个非常流行的Java缓存解决...
以前都是用SSH,第一次使用spring+springMVC+mybatis自己做的测试练习,主要是配置注解的使用,加了稍微详细的注释说明。另外在测试ehcache的时候也继承进去了,紧做练习参考. 环境:tomcat使用7.x,JDK1.7开发工具...
在实际项目中,这四个框架的整合使用能够构建出高性能的Java后台系统。Spring作为基础架构,负责管理和协调各个组件;Spring MVC处理HTTP请求,提供Web服务;Hibernate负责数据持久化,将Java对象映射到数据库;而...
springMVC+MyBatis+Ehcache项目整合 里面有几个调用的例子 还解决一般行整合出现 MyBatis事物无法回滚问题 Ehcache 以注解的方式进行整合 项目架构一般 不喜欢别骂我 没打算收你们的积分 不要问我叫什么 大家都叫我...
Spring 整合 EhCache 是一个常见的缓存管理方案,它允许我们在Spring应用中高效地缓存数据,提高系统性能。EhCache 是一个开源、基于内存的Java缓存库,适用于快速、轻量级的数据存储。现在我们来详细探讨如何在...
本文将深入探讨如何将Spring MVC与Shiro整合,实现LDAP(轻量目录访问协议)认证和简单的时间权限管理。 **1. Spring MVC与Shiro整合** 整合Spring MVC和Shiro的目的是为了在Spring应用中利用Shiro的强大安全功能...
标题中的"jar包整合:Springmvc+hibernate+Ehcache+shiro+mysql+Oracle+fastjson"指的是一个综合性的Java项目,它集成了多种技术框架,用于构建高效、可扩展的Web应用。让我们逐一解析这些技术的核心知识点: 1. **...
SpringMVC、Mybatis、Spring、Shiro和Ehcache这五个技术组件是Java Web开发中的关键工具,它们各自承担着不同的职责,并通过整合来实现强大的功能。下面将详细阐述这些技术以及它们在整合中的作用。 首先,...
### Dubbo与Zookeeper、SpringMVC的整合与使用详解 #### 一、Dubbo背景与概述 随着互联网技术的快速发展,网站应用的规模日益扩大,传统的垂直应用架构已难以满足日益增长的需求。为了提高系统的扩展性和灵活性,...
【Spring + Ehcache 整合应用详解】 在Java企业级开发中,缓存技术是提高系统性能的关键之一。Spring框架提供了对多种缓存机制的支持,其中包括Ehcache。本示例"spring+ehcache demo"将带你深入理解如何在Spring...
本实例主要涉及的技术栈包括SpringMVC、MyBatis、EhCache、FreeMarker以及Sitemesh,这些技术都是Java Web开发中的重要组件,各自承担着不同的职责。下面将分别详细介绍这些技术以及它们在整合中的作用。 1. ...
整合Spring MVC、MyBatis和Ehcache的过程通常包括以下步骤: 1. 配置Spring MVC:设置DispatcherServlet、配置MVC相关组件,如ViewResolver、HandlerMapping等。 2. 集成MyBatis:配置SqlSessionFactory,创建Mapper...
整合EhCache,对Mybatis的二级缓存进行管理和对spring进行缓存管理 整合FastJson对指定http类型的数据进行转换 整合hibernate.validator校验器对controller接口参数进行校验 使用了springmvc统一异常处理 使用了...
这里我们关注的是一个基于Spring、SpringMVC、Hibernate、CXF、Quartz定时器和Ehcache的整合项目。这个项目结合了这些技术,以实现一个高效、灵活且可扩展的企业级应用。下面将详细介绍每个组件及其在整体架构中的...
springMVC做的小项目,springMVC+spring+hibernate+ehcache+shiro jar包全,代码也全,结构清晰明了,非常适合springMVC初学者、ehcache初学者、shiro初学者。shiro除了做认证以及授权外,还做了并发登录控制,多个...
- 缓存管理:Shiro支持缓存,可以提高性能,例如使用Ehcache或Redis作为缓存机制。 - 会话管理:Shiro允许自定义会话管理策略,比如跨域共享会话、心跳检测等。 7. **最佳实践** - 将Shiro配置与Spring的Bean...
这个压缩包"SpringMVC+hibernate+spring+shiro+Ehcache所需jar包"提供了搭建基于SpringMVC、Spring 4.2、Hibernate 4.3、Shiro 1.2.4和Ehcache 2.0的基础组件,这些都是Java开发中非常流行和实用的工具。接下来,...
MyBatis与SpringMVC的整合是常见的企业级应用开发模式,它将MyBatis的持久层能力与SpringMVC的控制层功能结合在一起,提供了一种高效且灵活的Web应用解决方案。以下是对整合实现步骤的详细说明: 1. **添加依赖**:...