general revision of cache package; added ConcurrentMapCacheManager

This commit is contained in:
Juergen Hoeller
2011-07-22 09:32:56 +00:00
parent 02362f4347
commit abdae3d26b
46 changed files with 933 additions and 728 deletions

View File

@@ -17,11 +17,11 @@
<bean id="cacheInterceptor" class="org.springframework.cache.interceptor.CacheInterceptor">
<property name="cacheManager" ref="cacheManager"/>
<property name="cacheDefinitionSources" ref="annotationSource"/>
<property name="cacheOperationSources" ref="annotationSource"/>
</bean>
<bean id="advisor" class="org.springframework.cache.interceptor.BeanFactoryCacheOperationSourceAdvisor">
<property name="cacheDefinitionSource" ref="annotationSource"/>
<property name="cacheOperationSource" ref="annotationSource"/>
<property name="adviceBeanName" value="cacheInterceptor"/>
</bean>