缓存拦截器调用被忽略

时间:2016-06-21 12:38:20

标签: java spring caching spring-cache

我正在为maven多模块项目开发缓存实现(exstremescale),我在其中添加了maven依赖

    <dependency>
        <groupId>com.ibm.extremescale</groupId>
        <artifactId>ogclient</artifactId>
        <version>8.6.0.20150901-215917</version>
    </dependency>

上添加了缓存注释
@Override
@Cacheable(value = "productDetails", key = "#productId + #orgId")
public Product productRead(final String productId, final String productKey, final String orgId, final CRApplicationEnum sourceSystem) throws IntegrationException {

缓存manager.xml

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

<cache:annotation-driven />
<bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager" primary="true">
    <property name="caches">    
        <set>
            <bean class="com.ibm.websphere.objectgrid.spring.ObjectGridCache"
                p:name="eventDetails"  p:map-name="${iev.eventDetails.mapName}"
                p:object-grid-client-ref="wxsGridClient" />

            <bean class="com.ibm.websphere.objectgrid.spring.ObjectGridCache"
                p:name="eventValidationDetails"  p:map-name="${iev.eventValidationDetails.mapName}"
                p:object-grid-client-ref="wxsGridClient" />

            <bean class="com.ibm.websphere.objectgrid.spring.ObjectGridCache"
                p:name="productDetails"  p:map-name="${ipr.productDetails.mapName}"
                p:object-grid-client-ref="wxsGridClient" />

        </set>
    </property>
</bean>
<bean id="wxsCSDomain"
    class="com.ibm.websphere.objectgrid.spring.ObjectGridCatalogServiceDomainBean"
    p:catalog-service-endpoints="${xscale.catalogServiceEndpoint}" />

<bean id="wxsGridClient"
    class="com.ibm.websphere.objectgrid.spring.ObjectGridClientBean"
    p:catalog-service-domain-ref="wxsCSDomain" p:objectGridName="${wxs.objectGridName}" />

缓存仅适用于项目的一个maven模块,我可以看到缓存拦截器调用,对于maven模块的其余部分,它忽略了@cacheable注释(它不会进入拦截器)。

我们没有PostConstructorSelf invokation

我们使用atomikos作为事务管理器和CXF -interceptors,它们将在进入缓存方法之前执行。

请帮我解决这个问题

2 个答案:

答案 0 :(得分:0)

您对JdkDynamixAopProxy的评论以及查看代码使我认为您使用@Cacheable注释的方法属于具体类。并对具体行为的具体行为进行注释;您需要在应用程序中启用cglib代理。

这可以通过将代理目标类参数添加到缓存注释驱动标记来完成。

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

如果您不想为整个应用程序启用基于类的代理;您可以通过使用此批注对其进行批注来指定特定类的行为:

@Scope(proxyMode = ScopedProxyMode.TARGET_CLASS)

答案 1 :(得分:0)

在同一个类中调用方法会绕过动态代理,并且还会绕过作为动态代理逻辑一部分的任何交叉问题,如缓存,事务等。您的问题可能是Spring cache @Cacheable method ignored when called from within the same class吗?

如果是这样,修复方法是使用AspectJ编译时或加载时编织。