Spring 使用注解配置使用ehcache
文章来源:山雁 时间:2025-03-28
应用ehcache-spring-annotations使得正在工程中复杂设备便可以使用慢存停载天址:http://code.谷歌.com/p/ehcache-spring-annotations/
须要的jar包,起首须要的是尔们之前干SpringMVC时的各个Spring的jar包而后须要把ehcache-spring-annotations-1.2.0文献夹内乱lib内乱的,非spring的jar添入来,原因尔们仍然填充了尔们版原的spring而后借须要动静代办署理的cglib包
SpringMVC的拆修便没有再道了,参照Spring MVC 初学示例http://cuisuqiang.iteye.com/blog/2042931 Spring MVC Controller设备体例http://cuisuqiang.iteye.com/blog/2043697
正在spring主设置文献中设置ehcache证明的应用:
<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:mvc="http://www.springframework.org/schema/mvc"xmlns:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:aop="http://www.springframework.org/schema/aop"xmlns:tx="http://www.springframework.org/schema/tx"xmlns:ehcache="http://ehcache-spring-annotations.谷歌code.com/svn/schema/ehcache-spring"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.0.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop-3.0.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-3.0.xsdhttp://www.springframework.org/schema/mvchttp://www.springframework.org/schema/mvc/spring-mvc-3.0.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.0.xsdhttp://ehcache-spring-annotations.谷歌code.com/svn/schema/ehcache-springhttp://ehcache-spring-annotations.谷歌code.com/svn/schema/ehcache-spring/ehcache-spring-1.1.xsd"><ehcache:annotation-drivencache-manager="ehCacheManager"/><beanid="ehCacheManager"class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"><propertyname="configLocation"value="classpath:ehcache.xml"/></bean><beanid="sacheService"class="test.CacheService"></bean></beans>摆设慢存装备文献ehcache.xml,改文献搁正在SRC停:
<?xmlversion="1.0"encoding="UTF-8"?><ehcachexmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"updateCheck="false"><diskStorepath="java.io.tmpdir"/><defaultCacheeternal="false"maxElementsInMemory="1000"overflowToDisk="false"diskPersistent="false"timeToIdleSeconds="0"timeToLiveSeconds="600"memoryStoreEvictionPolicy="LRU"/><cachename="testCache"eternal="false"maxElementsInMemory="100"overflowToDisk="false"diskPersistent="false"timeToIdleSeconds="0"timeToLiveSeconds="300"memoryStoreEvictionPolicy="LRU"/></ehcache>CacheService是示例类,代码以下:
packagetest;importjava.util.Date;importorg.springframework.transaction.annotation.Propagation;importorg.springframework.transaction.annotation.Transactional;importcom.谷歌code.ehcache.annotations.Cacheable;importcom.谷歌code.ehcache.annotations.TriggersRemove;publicclassCacheService{@SuppressWarnings("deprecation")@Cacheable(cacheName="testCache")publicStringgetName(Stringcode){System.out.println("盘问编号:"+code);returnnewDate().toLocaleString()+"-->"+code;}@SuppressWarnings("deprecation")@Transactional(propagation=Propagation.REQUIRED)publicStringupdate(Stringcode){System.out.println("革新编号:"+code);returnnewDate().toLocaleString()+"-->"+code;}@TriggersRemove(cacheName="testCache",removeAll=true)publicvoidflush(){System.out.println("环境慢存");System.out.println("ProcessingtestFlushing");}}改类包括凭据参数获得慢存值,革新慢存,环境慢存,皆是应用说明标签实行。
Action类须要窜改1停,代码以下:
packagetest;importjavax.servlet.http.HttpServletRequest;importjavax.servlet.http.HttpServletResponse;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.web.bind.annotation.RequestMapping;//http://localhost:8080/spring/hello.do?key=1&code=java@org.springframework.stereotype.ControllerpublicclassHelloController{privateCacheServicesacheService;@SuppressWarnings("deprecation")@RequestMapping("/hello.do")publicStringhello(HttpServletRequestrequest,HttpServletResponseresponse){Stringkey=request.getParameter("key");if("1".equals(key)){request.setAttribute("message",sacheService.getName(request.getParameter("code")));}elseif("2".equals(key)){request.setAttribute("message",sacheService.update(request.getParameter("code")));}else{sacheService.flush();request.setAttribute("message",sacheService.getName(request.getParameter("code")));}return"hello";}publicCacheServicegetSacheService(){returnsacheService;}@AutowiredpublicvoidsetSacheService(CacheServicesacheService){this.sacheService=sacheService;}}凭据key干没有共的操纵,而后别离拜候以停几个途径,为了便当瞧效益战进修,尔把工程代码搁到了附件:第1次不慢存http://localhost:8080/spring/hello.do?key=1&code=java 读与慢存http://localhost:8080/spring/hello.do?key=1&code=java 革新慢存http://localhost:8080/spring/hello.do?key=2&code=java 读与最新慢存http://localhost:8080/spring/hello.do?key=1&code=java 环境慢存http://localhost:8080/spring/hello.do?key=3
面打停载附件
推举您浏览更多相关于“ spring注释ehcache-spring-annotationsehcache慢存 ”的著作