我正在尝试将Ehcache与我的Java Spring MVC Web应用程序集成。我已按照以下文章中的说明操作:
https://dzone.com/articles/implementing-ehcache-using。
我已将以下依赖项添加到我的pom.xml
文件中:
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>2.9.0</version>
</dependency>
我的ehcache.xml
如下:
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache.xsd"
updateCheck="true"
monitoring="autodetect"
dynamicConfig="true">
<diskStore path="java.io.tmpdir" />
<cache name="swcmRestData"
maxEntriesLocalHeap="10000"
maxEntriesLocalDisk="1000"
eternal="false"
diskSpoolBufferSizeMB="20"
timeToIdleSeconds="300" timeToLiveSeconds="600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
<persistence strategy="localTempSwap" />
</cache>
</ehcache>
我的root-context.xml
中有以下条目:
<!-- EhCache Configuration -->
<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" p:configLocation="classpath:ehcache.xml" p:shared="true"/>
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager" p:cacheManager-ref="ehcache"/>
我有一个方法可以启用ehCache:
@Cacheable(value="swcmRestData", key="url")
public <T> T getEntity(String url, java.lang.Class<T> gt) throws RestException
{
T t = restClientService.getEntity(url, gt);
return t;
}
如果将相同的url
传递给指定的方法,我希望从ehCache中检索数据。运行代码时我没有遇到任何错误。但看起来缓存不起作用。我在这里缺少什么
答案 0 :(得分:1)
可能导致问题的两件事:
如果以上都不是错误来源,请提供有关您的设置的更多信息。