Uses of Interface
org.springframework.cache.CacheManager
Packages that use CacheManager
Package
Description
Annotations and supporting classes for declarative cache management.
Implementation package for 
java.util.concurrent based caches.AOP-based solution for declarative caching demarcation.
Support classes for the org.springframework.cache package.
- 
Uses of CacheManager in org.springframework.cache.annotationFields in org.springframework.cache.annotation with type parameters of type CacheManagerModifier and TypeFieldDescriptionprotected Supplier<CacheManager>AbstractCachingConfiguration.cacheManagerMethods in org.springframework.cache.annotation that return CacheManagerModifier and TypeMethodDescriptiondefault CacheManagerCachingConfigurer.cacheManager()Return the cache manager bean to use for annotation-driven cache management.CachingConfigurerSupport.cacheManager()Deprecated.
- 
Uses of CacheManager in org.springframework.cache.concurrentClasses in org.springframework.cache.concurrent that implement CacheManagerModifier and TypeClassDescriptionclassCacheManagerimplementation that lazily buildsConcurrentMapCacheinstances for eachConcurrentMapCacheManager.getCache(java.lang.String)request.
- 
Uses of CacheManager in org.springframework.cache.interceptorMethods in org.springframework.cache.interceptor that return CacheManagerModifier and TypeMethodDescriptionAbstractCacheResolver.getCacheManager()Return theCacheManagerthat this instance uses.Methods in org.springframework.cache.interceptor with parameters of type CacheManagerModifier and TypeMethodDescriptionvoidAbstractCacheResolver.setCacheManager(CacheManager cacheManager) Set theCacheManagerthat this instance should use.voidCacheAspectSupport.setCacheManager(CacheManager cacheManager) Set theCacheManagerto use to create a defaultCacheResolver.voidCacheProxyFactoryBean.setCacheManager(CacheManager cacheManager) Set theCacheManagerto use to create a defaultCacheResolver.Constructors in org.springframework.cache.interceptor with parameters of type CacheManagerModifierConstructorDescriptionprotectedAbstractCacheResolver(CacheManager cacheManager) Construct a newAbstractCacheResolverfor the givenCacheManager.NamedCacheResolver(CacheManager cacheManager, String... cacheNames) SimpleCacheResolver(CacheManager cacheManager) Construct a newSimpleCacheResolverfor the givenCacheManager.
- 
Uses of CacheManager in org.springframework.cache.supportClasses in org.springframework.cache.support that implement CacheManagerModifier and TypeClassDescriptionclassAbstract base class implementing the commonCacheManagermethods.classCompositeCacheManagerimplementation that iterates over a given collection of delegateCacheManagerinstances.classA basic, no operationCacheManagerimplementation suitable for disabling caching, typically used for backing cache declarations without an actual backing store.classSimple cache manager working against a given collection of caches.Method parameters in org.springframework.cache.support with type arguments of type CacheManagerModifier and TypeMethodDescriptionvoidCompositeCacheManager.setCacheManagers(Collection<CacheManager> cacheManagers) Specify the CacheManagers to delegate to.Constructors in org.springframework.cache.support with parameters of type CacheManagerModifierConstructorDescriptionCompositeCacheManager(CacheManager... cacheManagers) Construct a CompositeCacheManager from the given delegate CacheManagers.