Class CompositeCacheManager
- All Implemented Interfaces:
- InitializingBean,- CacheManager
CacheManager implementation that iterates over
 a given collection of delegate CacheManager instances.
 Allows NoOpCacheManager to be automatically added to the end of
 the list for handling cache declarations without a backing store. Otherwise,
 any custom CacheManager may play that role of the last delegate as
 well, lazily creating cache regions for any requested name.
 
Note: Regular CacheManagers that this composite manager delegates to need
 to return null from getCache(String) if they are unaware of
 the specified cache name, allowing for iteration to the next delegate in line.
 However, most CacheManager implementations fall back to lazy creation
 of named caches once requested; check out the specific configuration details
 for a 'static' mode with fixed cache names, if available.
- Since:
- 3.1
- Author:
- Costin Leau, Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstruct an empty CompositeCacheManager, with delegate CacheManagers to be added via the"cacheManagers"property.CompositeCacheManager(CacheManager... cacheManagers) Construct a CompositeCacheManager from the given delegate CacheManagers.
- 
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.voidsetCacheManagers(Collection<CacheManager> cacheManagers) Specify the CacheManagers to delegate to.voidsetFallbackToNoOpCache(boolean fallbackToNoOpCache) Indicate whether aNoOpCacheManagershould be added at the end of the delegate list.
- 
Constructor Details- 
CompositeCacheManagerpublic CompositeCacheManager()Construct an empty CompositeCacheManager, with delegate CacheManagers to be added via the"cacheManagers"property.
- 
CompositeCacheManagerConstruct a CompositeCacheManager from the given delegate CacheManagers.- Parameters:
- cacheManagers- the CacheManagers to delegate to
 
 
- 
- 
Method Details- 
setCacheManagersSpecify the CacheManagers to delegate to.
- 
setFallbackToNoOpCachepublic void setFallbackToNoOpCache(boolean fallbackToNoOpCache) Indicate whether aNoOpCacheManagershould be added at the end of the delegate list. In this case, anygetCacherequests not handled by the configured CacheManagers will be automatically handled by theNoOpCacheManager(and hence never returnnull).
- 
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
 
 
-