BAEL-19967: Migrate spring-caching module to the com.baeldung package

This commit is contained in:
Krzysiek
2019-12-18 21:31:15 +01:00
parent faf8421d75
commit 4465bb6fa9
18 changed files with 31 additions and 31 deletions
+2 -2
View File
@@ -13,7 +13,7 @@
<!-- <context:annotation-config/> -->
<!-- the service that you wish to make cacheable. -->
<bean id="customerDataService" class="org.baeldung.caching.example.CustomerDataService"/>
<bean id="customerDataService" class="com.baeldung.caching.example.CustomerDataService"/>
<bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager">
<property name="caches">
@@ -34,7 +34,7 @@
<!-- apply the behavior to all the implementations of CustomerDataService -->
<aop:config>
<aop:advisor advice-ref="cachingBehavior" pointcut="execution(* org.baeldung.caching.example.CustomerDataService.*(..))"/>
<aop:advisor advice-ref="cachingBehavior" pointcut="execution(* com.baeldung.caching.example.CustomerDataService.*(..))"/>
</aop:config>
</beans>