Package | Description |
---|---|
org.springframework.cache |
Spring's generic cache abstraction.
|
org.springframework.cache.concurrent |
Implementation package for
java.util.concurrent based caches. |
org.springframework.cache.interceptor |
AOP-based solution for declarative caching demarcation.
|
org.springframework.cache.support |
Support classes for the the org.springframework.cache package.
|
Modifier and Type | Method and Description |
---|---|
Cache |
CacheManager.getCache(String name)
Return the cache associated with the given name.
|
Modifier and Type | Class and Description |
---|---|
class |
ConcurrentMapCache
Simple
Cache implementation based on the core JDK
java.util.concurrent package. |
Modifier and Type | Method and Description |
---|---|
protected Cache |
ConcurrentMapCacheManager.createConcurrentMapCache(String name)
Create a new ConcurrentMapCache instance for the specified cache name.
|
Cache |
ConcurrentMapCacheManager.getCache(String name) |
Modifier and Type | Method and Description |
---|---|
protected Collection<Cache> |
CacheAspectSupport.CacheOperationContext.getCaches() |
protected Collection<Cache> |
CacheAspectSupport.getCaches(CacheOperation operation) |
Modifier and Type | Method and Description |
---|---|
Cache |
AbstractCacheManager.getCache(String name) |
Cache |
NoOpCacheManager.getCache(String name)
Return the cache associated with the given name.
|
Cache |
CompositeCacheManager.getCache(String name) |
Modifier and Type | Method and Description |
---|---|
protected Collection<? extends Cache> |
SimpleCacheManager.loadCaches() |
protected abstract Collection<? extends Cache> |
AbstractCacheManager.loadCaches()
Load the caches for this cache manager.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractCacheManager.addCache(Cache cache) |
Modifier and Type | Method and Description |
---|---|
void |
SimpleCacheManager.setCaches(Collection<? extends Cache> caches)
Specify the collection of Cache instances to use for this CacheManager.
|
Copyright © 2012. All Rights Reserved.