Spring MVC - 配置Ehcache - 不缓存

时间:2017-07-13 13:14:21

标签: java spring-mvc ehcache

我正在尝试将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中检索数据。运行代码时我没有遇到任何错误。但看起来缓存不起作用。我在这里缺少什么

1 个答案:

答案 0 :(得分:1)

可能导致问题的两件事:

  1. 您缺少Spring配置,因此在定义的bean和缓存注释之间存在链接。实际上,您链接的文章中的第2点是您在此处未提及的。
  2. 正如评论中所建议的那样,您正在缓存的方法是在同一个类中调用的。这是使用代理时Spring AOP实现的限制。如果将Spring配置为进行字节码编织,它将起作用。
  3. 如果以上都不是错误来源,请提供有关您的设置的更多信息。