springmvc和encache集成关键代码和总结

基于注解的spring缓存配置 了解更多与spring集成的Echache  还有分布式的mencache让我更好学习了oscache

介绍二者集成之前,先介绍下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>*/

下面开始罗列示例代码,首先是web.xml

 

<?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/javaeehttp://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>

然后是//src//applicationContext.xml

 

<?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/beanshttp://www.springframework.org/schema/beans/spring-beans-3.2.xsdhttp://www.springframework.org/schema/mvchttp://www.springframework.org/schema/mvc/spring-mvc-3.2.xsdhttp://www.springframework.org/schema/cachehttp://www.springframework.org/schema/cache/spring-cache-3.2.xsdhttp://www.springframework.org/schema/contexthttp://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>

下面是//src//ehcache.xml

 

<!-- 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"/><defaultCachemaxElementsInMemory="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(先进先出)
-->

下面是需要被缓存处理的UserService.java

 

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("移除缓存中的所有数据");}
}

下面是UserController.java

 

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 {@Resourceprivate 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";}
}

最后把剩下的4个jsp页面列出来,首先是index.jsp

 

<%@ 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>用户名

下面是getUser.jsp

 

<%@ page language="java" pageEncoding="UTF-8"%>
当前用户名为${username}

 

下面是updateUser.jsp

 

 

<%@ page language="java" pageEncoding="UTF-8"%>
已更新${userNo}号用户

最后是removeAllUser.jsp

 

<%@ page language="java" pageEncoding="UTF-8"%>
已移除所有用户

 

 

 

 

 

spring.xml里面的文件配置

 

xmlns:cache="http://www.springframework.org/schema/cache" 
http://www.springframework.org/schema/cache/spring-cache-3.2.xsd<!-- 启用缓存注解功能,这个是必须的,否则注解不会生效,另外,该注解一定要声明在spring主配置文件中才会生效 -->
<cache:annotation-driven cache-manager="cacheManager" />
<!-- spring自己的换管理器,这里定义了两个缓存位置名称 ,既注解中的value -->
<bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager">
<property name="caches">
<set>
<bean
class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean"
p:name="default" />
<bean
class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean"
p:name="config" />
<bean
class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean"
p:name="folder" />
<bean
class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean"
p:name="acticle" />
<bean
class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean"
p:name="attachment" />
</set>
</property>
</bean>

 

 

 

 

 

 

测试时,访问index.jsp之后点击各个链接并依次观察控制台输出即可
缓存有效果的特征是:第二次查询数据时不会访问数据库(即不打印日志)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/296085.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

正则表达式||grep的使用

在编写程序时&#xff0c;或者编写网页时&#xff0c;在处理一些不固定的字符时&#xff0c;我们通常会使用形如&#xff1a;. * ?等字符&#xff0c;而我们就把这称作是正则表达式&#xff0c;尤其是我们在浏览一些网站进行用户注册时&#xff0c;通常会见到对我们的帐号、密…

基于MySQL的高可用可扩展架构探讨

随着信息量飞涨&#xff0c;信息的存储成为了这个时代至关重要的一项技术。如何来保证数据存储技术能够适应信息量的增长速度和我们对信息的高度依赖&#xff0c;成为一个非常重要的课题。本文将从数据库架构的层面&#xff0c;通过以开源的数据存储软件来构建分布式数据层的思…

linux 测试程序性能,推荐一款Linux系统的性能测试软件

bitcnts是mibench众多测试软件中的一个,但足够测试CPU的性能.如果需要全部测试软件&#xff0c;请从密西根大学网站上下载&#xff1a;http://www.eecs.umich.edu/mibench/下面贴上SEP4020Linux2.6上跑1000000位测试时间测试环境CPU88MHz 开LCD NFS网络文件系统/mibench/bitcou…

使用chpasswd命令批量修改系统用户密码

chpasswd命令工作原理&#xff1a;从系统的标准输入读入用户的名称和口令&#xff0c;并利用这些信息来更新系统上已存在的用户的口令&#xff01;语法&#xff1a;1&#xff1a;# echo 用户名:密码 | chpasswd2&#xff1a;# chpasswd < doiido.txt相关参数&#xff1a;-e …

有趣分享:国内产业图谱

IT有趣分享”Microsoft 市值又重新登上全球第一当地时间21年10月29号周五美股收盘微软市值重新登上全球第一&#xff0c;约为2.46万亿美元&#xff0c;超越苹果2.43万亿美元&#xff0c;成为全球市值第一公司。相当于深圳21年前三季度的gdp的总和的两倍。有趣的是专门有人做了公…

性冷淡风的麻将,获红点奖!网友:没有烟火气了

全世界只有3.14 % 的人关注了爆炸吧知识在这个消费升级的时代很多产品都被重新设计着最近&#xff0c;一款麻将引发大家热议有人说惊艳也有人说太冰冷&#xff0c;没了烟火气设计者是THE 90s LAB台湾的一个90后团队这副麻将的名字很洋气叫做&#xff0c;马丘Machill读起来&…

springmvc使用和经验总结(长沙师说网络科技有限公司)

springmvc 先分析下代码&#xff0c;快速学习&#xff0c;先要把配置文件写好&#xff0c; 给上2个类具体看看 package com.shishuo.studio.action;import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframe…

MySQL使用裸设备

1.名词注释&#xff1a;a.裸设备&#xff1a;是一种没有经过格式化&#xff0c;不被Unix/Linux通过文件系统来读取的特殊类型的块设备文件&#xff0c;允许以直接访问硬盘的方式访问一个存储设备&#xff0c;而不经过操作系统的高速缓存和缓冲器。裸设备可以绑定一个分区&#…

c语言md5函数 linux,Linux下C语言计算文件的md5值(长度32)

google了好久都没有找到合适的&#xff0c;其实我只需要一个函数&#xff0c;能计算文件的 md5 值就好&#xff0c;后来找到了 md5.h 和 md5.c 的源文件&#xff0c;仿照别人的封装了个函数(他那个有问题&#xff0c;和 md5sum 计算出来的都不一样)。废话少说&#xff0c;直接贴…

图片的旋转

主要运用了Matrix类&#xff0c;postRotate()方法和postScale()方法&#xff1b; Matrix&#xff1a;中文是矩阵的意思&#xff0c;主要用于图片的缩放&#xff0c;平移与旋转&#xff1b; postRotate()用于旋转&#xff0c;postScale()用于缩放&#xff1b; 具体MianAvtivity代…

让 AI 为你写代码 - 体验 Github Copilot

前几天在群里看到有大神分享 Copoilot AI 写代码&#xff0c;看了几个截图有点不敢相信自己的眼睛。今天赶紧自己也来体验一下 Copoilot AI 写代码到底有多神奇。申请 现在 Copoilot 还处在预览阶段&#xff0c;想要体验需要先申请。等待大概一晚会收到邮件提示申请试用成功&am…

ajax常见错误和使用总结

先给出标准的js时间ajax <script type"txt/javascript">//1、在IE中实例化Msxml2.XMLHTTP对象 Msxml2.XMLHTTP是IE浏览器的内置对象&#xff0c;该对象具有异步提交数据和获取结果的功能var xmlHttpfalse; function initAJAX() {if(window.XMLHttpRequset){x…

这个24岁北航博士刚毕业就受聘211大学副教授,他大一就保研,学术能力太牛了.........

全世界只有3.14 % 的人关注了爆炸吧知识本文综合整理自&#xff1a;量子位、微言航语近日&#xff0c;有一个人的“朋友圈”在朋友圈火了。别误会&#xff0c;超模君可没在玩套娃游戏。截图给大家搬来了&#xff0c;快看你没看错&#xff01;1996年出生&#xff0c;今年24岁&am…

正则 js截取时间

项目中要把时间截取&#xff0c;只要年月日&#xff0c;不要时分秒&#xff0c;于是 /\d{4}-\d{1,2}-\d{1,2}/g.exec("2012-6-18 00:00:00")或者另一种 var date "2015-12-26 15:22:00"; console.log(date.replace(/\s[\x00-\xff]*/g,));解析 思路:获取到…

数据中心缩小是因为外包和云计算吗

一些IT专家预测&#xff1a;在云计算和数据中心外包时代&#xff0c;将会有越来越多的企业看不到建造和管理数据中心的价值。 “建造数据中心是一笔大的支出&#xff0c;你得考虑到能量、发电、UPS、机架等等&#xff0c;这还没讲到服务器呢&#xff0c;”架构师Tim Antonowicz…

英特尔傲腾内存linux,英特尔傲腾内存怎么样?intel傲腾内存优点和缺点你知道吗?...

英特尔傲腾内存在前一段时间正是发布&#xff0c;对于英特尔内存的性能不少用户一无所知&#xff0c;那么英特尔傲腾内存怎么样&#xff1f;都有哪些优点和缺点&#xff1f;下面装机之家小编来为大家解读下。优点1&#xff1a;3D XPoint随机读取性能强傲腾使用了不同于普通固态…

零代码平台中的服务编排思路

先打个广告&#xff0c;我们的第三场零代码实践的直播在本周五&#xff08; 11 月 5 日 &#xff09;晚8点准时开始&#xff0c;扫描下面二维码&#xff0c;直接预约直播&#xff0c;到时间微信会自动提醒。随着企业数字化转型的进程加快&#xff0c;零代码平台的的应用越来越广…

webservice发布

一朋友问我webservice怎么发布在iis上。我之前也不知道&#xff0c;今天自己亲自试了一把竟然发布成功了。现在这个分享给大家。希望给大家带来一点点方便。 其实和发布普通网站一样&#xff0c;在iis上选择 默认网站--->新建虚拟目录--->取别名&#xff08;随便取&#…

自己平时长期积累的java资料可供大家学习

java 中数据转换 1、如何将字符串String转化为整数int int i Integer.parseInt(str); int i Integer.valueOf(my_str).intValue(); 注: 字串转成Double, Float, Long的方法大同小异。 2、如何将字符串String转化为Integer Integer integerInteger.valueOf(i) 3、…

日本原装进口雪平锅,1台顶4台,有它谁还点外卖?

▲ 点击查看小爆我虽然热爱烹饪&#xff0c;但不得不说「下厨房」&#xff0c;也是个坑。光是锅&#xff0c;我就要买好几个。为了蒸包子馒头买蒸锅&#xff0c;为了炒菜买炒锅&#xff0c;偶尔想精致喝热牛奶又买了小奶锅&#xff0c;为了煲汤、做点卤味解解馋&#xff0c;买炖…