Spring 5缓存不适用于@Cachable(CacheInterceptor不在调用堆栈中)?

时间:2018-04-25 11:52:37

标签: java spring caching aop

我通过添加@Cachable注释为公共方法启用缓存,如下所示:

@Cacheable(cacheNames = "saas_setting", //
        key = "#key")
public Setting get(String key) { ... }

另一方面,我添加了cacheManager bean:

<bean id="cacheManager"
    class="org.springframework.cache.support.SimpleCacheManager">
    <property name="caches">
        <set>
            <bean
                class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean"
                name="saas_setting" />
        </set>
    </property>
</bean>

我启用AOP:

<aop:aspectj-autoproxy 
    proxy-target-class="true"/>

然后启用缓存:

<cache:annotation-driven 
    mode="aspectj"
    proxy-target-class="true"/>

然而,结果没有被缓存,并且在从系统的其他部分调用时调用该方法。

我在方法中设置制动点并检查调用堆栈:堆栈中没有CachInterceptor?!

编辑:

这是完整的配置文件:

<?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:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:cache="http://www.springframework.org/schema/cache"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.3.xsd
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
        http://www.springframework.org/schema/cache
        http://www.springframework.org/schema/cache/spring-cache-4.3.xsd">

    <!-- Enable AspectJ style of Spring AOP -->
    <aop:aspectj-autoproxy 
        proxy-target-class="true"/>

    <!-- Enable cache -->
    <cache:annotation-driven 
        mode="aspectj"
        proxy-target-class="true"/>


    <bean id="cacheManager"
        class="org.springframework.cache.support.SimpleCacheManager">
        <property name="caches">
            <set>
                <bean
                    class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean"
                    name="saas_setting" />
            </set>
        </property>
    </bean>

    <bean name="applicationProperties"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="ignoreResourceNotFound" value="false" />
        <property name="locations">
            <list>
                <value>resources/server.properties</value>
                <value>resources/modules/*.properties</value>
                <value>resources/jetty/*.properties</value>
                <value>resources/db/#{systemProperties['db.dialect']}.properties
                </value>
                <value>resources/db/#{systemProperties['db.orm']}.properties</value>
            </list>
        </property>
    </bean>
    <import resource="../context/beans-*.xml" />
</beans>

编辑:

Baed on Spring文档:

  

处理缓存注释的默认建议模式是“proxy”,它允许仅通过代理拦截调用;同一类中的本地调用不能以这种方式截获。对于更高级的拦截模式,请考虑切换到“aspectj”模式并结合编译时或加载时编织。

在我的代码的某些部分,私有方法将被缓存。所以我必须使用AspectJ进行加载时编织。

1 个答案:

答案 0 :(得分:0)

因为您正在使用aspectJ模式的缓存,所以在类路径中需要spring-aspects.jar。目前还不清楚你为什么要使用aspectj代理而不是默认代理。

由于您正在使用aspectj模式进行代理,因此您还需要设置加载时间编织。

可以使用以下方法启用加载时间编织:

<context:load-time-weaver/>

当您使用proxy-target-class="true"

时,您使用的方法也必须来自具体类