gpt4 book ai didi

java - 缓存拦截器调用被忽略

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:57:33 24 4
gpt4 key购买 nike

我正在为 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 {

缓存管理器.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 拦截器,它们将在进入缓存方法之前执行。

请帮帮我

最佳答案

你对 JdkDynamixAopProxy 的评论和查看代码让我觉得你用 @Cacheable 注释的方法在一个具体的类中。并为具体类上的注释展示正确的行为;您需要在您的应用程序中启用 cglib 代理。

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

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

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

@Scope(proxyMode = ScopedProxyMode.TARGET_CLASS)

关于java - 缓存拦截器调用被忽略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37944677/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com