org.springframework.cache.ehcache
Class EhCacheCacheManager
java.lang.Object
org.springframework.cache.support.AbstractCacheManager
org.springframework.cache.ehcache.EhCacheCacheManager
- All Implemented Interfaces:
- InitializingBean, CacheManager
public class EhCacheCacheManager
- extends AbstractCacheManager
CacheManager backed by an EhCache CacheManager
.
- Since:
- 3.1
- Author:
- Costin Leau, Juergen Hoeller
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
EhCacheCacheManager
public EhCacheCacheManager()
setCacheManager
public void setCacheManager(CacheManager cacheManager)
- Set the backing EhCache
CacheManager
.
loadCaches
protected Collection<Cache> loadCaches()
- Description copied from class:
AbstractCacheManager
- Load the caches for this cache manager. Occurs at startup.
The returned collection must not be null.
- Specified by:
loadCaches
in class AbstractCacheManager
getCache
public Cache getCache(String name)
- Description copied from interface:
CacheManager
- Return the cache associated with the given name.
- Specified by:
getCache
in interface CacheManager
- Overrides:
getCache
in class AbstractCacheManager
- Parameters:
name
- cache identifier (must not be null
)
- Returns:
- associated cache, or
null
if none is found