Class TransactionAwareCacheManagerProxy
java.lang.Object
org.springframework.cache.transaction.TransactionAwareCacheManagerProxy
- All Implemented Interfaces:
- InitializingBean,- CacheManager
public class TransactionAwareCacheManagerProxy
extends Object
implements CacheManager, InitializingBean
Proxy for a target 
CacheManager, exposing transaction-aware Cache objects
 which synchronize their Cache.put(java.lang.Object, java.lang.Object) operations with Spring-managed transactions
 (through Spring's TransactionSynchronizationManager),
 performing the actual cache put operation only in the after-commit phase of a successful transaction.
 If no transaction is active, Cache.put(java.lang.Object, java.lang.Object) operations will be performed immediately, as usual.- Since:
- 3.2
- Author:
- Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionCreate a new TransactionAwareCacheManagerProxy, setting the target CacheManager through thesetTargetCacheManager(org.springframework.cache.CacheManager)bean property.TransactionAwareCacheManagerProxy(CacheManager targetCacheManager) Create a new TransactionAwareCacheManagerProxy for the given target CacheManager.
- 
Method SummaryModifier and TypeMethodDescriptionvoidInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.Get the cache associated with the given name.Get a collection of the cache names known by this manager.voidsetTargetCacheManager(CacheManager targetCacheManager) Set the target CacheManager to proxy.
- 
Constructor Details- 
TransactionAwareCacheManagerProxypublic TransactionAwareCacheManagerProxy()Create a new TransactionAwareCacheManagerProxy, setting the target CacheManager through thesetTargetCacheManager(org.springframework.cache.CacheManager)bean property.
- 
TransactionAwareCacheManagerProxyCreate a new TransactionAwareCacheManagerProxy for the given target CacheManager.- Parameters:
- targetCacheManager- the target CacheManager to proxy
 
 
- 
- 
Method Details- 
setTargetCacheManagerSet the target CacheManager to proxy.
- 
afterPropertiesSetpublic void afterPropertiesSet()Description copied from interface:InitializingBeanInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set. - Specified by:
- afterPropertiesSetin interface- InitializingBean
 
- 
getCacheDescription copied from interface:CacheManagerGet the cache associated with the given name.Note that the cache may be lazily created at runtime if the native provider supports it. - Specified by:
- getCachein interface- CacheManager
- Parameters:
- name- the cache identifier (must not be- null)
- Returns:
- the associated cache, or nullif such a cache does not exist or could be not created
 
- 
getCacheNamesDescription copied from interface:CacheManagerGet a collection of the cache names known by this manager.- Specified by:
- getCacheNamesin interface- CacheManager
- Returns:
- the names of all caches known by the cache manager
 
 
-