Class AbstractTransactionSupportingCacheManager
java.lang.Object
org.springframework.cache.support.AbstractCacheManager
org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager
- All Implemented Interfaces:
- InitializingBean,- CacheManager
- Direct Known Subclasses:
- JCacheCacheManager
Base class for CacheManager implementations that want to support built-in
 awareness of Spring-managed transactions. This usually needs to be switched
 on explicitly through the 
setTransactionAware(boolean) bean property.- Since:
- 3.2
- Author:
- Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected CachedecorateCache(Cache cache) Decorate the given Cache object if necessary.booleanReturn whether this CacheManager has been configured to be transaction-aware.voidsetTransactionAware(boolean transactionAware) Set whether this CacheManager should expose transaction-aware Cache objects.Methods inherited from class org.springframework.cache.support.AbstractCacheManagerafterPropertiesSet, getCache, getCacheNames, getMissingCache, initializeCaches, loadCaches, lookupCache
- 
Constructor Details- 
AbstractTransactionSupportingCacheManagerpublic AbstractTransactionSupportingCacheManager()
 
- 
- 
Method Details- 
setTransactionAwarepublic void setTransactionAware(boolean transactionAware) Set whether this CacheManager should expose transaction-aware Cache objects.Default is "false". Set this to "true" to synchronize cache put/evict operations with ongoing Spring-managed transactions, performing the actual cache put/evict operation only in the after-commit phase of a successful transaction. 
- 
isTransactionAwarepublic boolean isTransactionAware()Return whether this CacheManager has been configured to be transaction-aware.
- 
decorateCacheDescription copied from class:AbstractCacheManagerDecorate the given Cache object if necessary.- Overrides:
- decorateCachein class- AbstractCacheManager
- Parameters:
- cache- the Cache object to be added to this CacheManager
- Returns:
- the decorated Cache object to be used instead, or simply the passed-in Cache object by default
 
 
-