彩票走势图

谁说Java代码多,5分钟搞定App缓存

原创|使用教程|编辑:龚雪|2014-11-06 09:51:36.000|阅读 1505 次

概述:我用了5分钟为自己的App(应用程序)添加缓存,再一次证明Java也不需要写长篇的代码,就能为App添加缓存。想知道我怎样做的吗?请看下文。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

你也许永远不会相信我为应用程序添加缓存层,只用了5分钟。

我的应用程序使用 Spring version 3.2.8 和 maven 3.2.1。

从Spring version 3.2 开始,org.springframework.cache.ehcache已经从核心宝中移除,现在在spring-context-support中。为了让EhCache工作,你必须单独添加在项目中。

步骤一

maven需要添加下面代码:

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId> <version>${spring.version}</version>
</dependency>

以及

<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>${ehcache.version}</version>
</dependency>

将最新版本放到占位符中: ${spring.version} 和 ${ehcache.version}

步骤二

在应用程序中将以下代码加入context.xml:

<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager" p:cacheManager-ref="ehcache"/>
<bean id="ehcache" class="org.springframework.cache.ehcache. EhCacheManagerFactoryBean" p:configLocation="classpath:configuration/ehcache.xml" p:shared="true"/> <cache:annotation-driven/>

步骤三

将ehcache.xml添加到类路径

一个基本的ehcache.xml入下:

<ehcache xmlns:xsi="//www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="//ehcache.org/ehcache.xsd">
<diskStore path="java.io.tmpdir"/>
<defaultCache />
<cache name="yourCache" maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="1800" timeToLiveSeconds="1800" maxElementsOnDisk="10000000" diskExpiryThreadIntervalSeconds="1800" memoryStoreEvictionPolicy="LRU"> <persistence strategy="localTempSwap"/> </cache>
</ehcache>

步骤四

最后一步,使用注释,非常简单,一行代码:

@Cacheable(value = "youCache")

这个注释可以使用任何方法,默认情况下在缓存哈希图中,它使用方法参数作为key。

现在,谁说Java要写长篇的代码?

EhCache介绍:

在这次实践中使用了EhCache,它强大、高度可定制化,可以根据需要设置任何key、缓存类型、缓存时间。最重要的是,他开源。


无处不在的广告,关注一下真会省不少钱

【年终大促 巅峰盛"慧" 】促销火热进行中 iPhone 6 Plus、 iPhone 6、iPad Air等你拿 点我查看

FastReport VCL 5新版发布会,2014-11-25 15:00网络直播,免费参加 
标签:JavaMaven

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP