Sto lavorando sulla realizzazione di cache (exstremescale) per esperto di progetto modulo multi, dove ho aggiunto sotto Maven dipendenzacache viene ignorato
<dependency>
<groupId>com.ibm.extremescale</groupId>
<artifactId>ogclient</artifactId>
<version>8.6.0.20150901-215917</version>
</dependency>
Aggiunto caching annotazione
@Override
@Cacheable(value = "productDetails", key = "#productId + #orgId")
public Product productRead(final String productId, final String productKey, final String orgId, final CRApplicationEnum sourceSystem) throws IntegrationException {
cache- 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}" />
Il caching funziona solo per un modulo maven del progetto, posso vedere la chiamata dell'intercettore di cache e per il resto del modulo di maven sta ignorando l'annotazione @cachebile (non sta andando all'intercettore).
Noi non abbiamo PostConstructor o Self invokation
Stiamo usando atomikos come gestore delle transazioni e -interceptors CXF che verranno eseguiti prima di arrivare a metodi di caching.
Please help me su questo
lavorare sul modulo e non sugli altri è un po 'strano direi. Il contesto dell'applicazione Spring non interessa da dove sono state caricate le tue classi. Stai usando contesti genitori/figli? –
Durante il debug che abbiamo imparato a conoscere, l'elenco dell'intercettore che è preparato dalla classe JdkDynamicAopProxy per il bean con annotazione memorizzabile nella cache non sta aggiungendo l'intercettore della cache all'elenco. –
Puoi condividere un campione, sarebbe molto più facile. Puoi mostrare la configurazione del bean di quel bean? Stai esponendo un'interfaccia per caso? –