Uses of Interface
org.springframework.cache.CacheManager
Packages that use CacheManager Package Description org.springframework.cache.annotation Annotations and supporting classes for declarative cache management.org.springframework.cache.caffeine Support classes for the open source cache in Caffeine library, allowing to set up Caffeine caches within Spring's cache abstraction.org.springframework.cache.concurrent Implementation package forjava.util.concurrentbased caches.org.springframework.cache.ehcache Support classes for the open source cache EhCache 2.x, allowing to set up an EhCache CacheManager and Caches as beans in a Spring context.org.springframework.cache.interceptor AOP-based solution for declarative caching demarcation.org.springframework.cache.jcache Implementation package for JSR-107 (javax.cache aka "JCache") based caches.org.springframework.cache.jcache.interceptor AOP-based solution for declarative caching demarcation using JSR-107 annotations.org.springframework.cache.support Support classes for the org.springframework.cache package.org.springframework.cache.transaction Transaction-aware decorators for the org.springframework.cache package.org.springframework.web.reactive.resource Support classes for serving static resources.org.springframework.web.servlet.resource Support classes for serving static resources.Uses of CacheManager in org.springframework.cache.annotation
Fields in org.springframework.cache.annotation with type parameters of type CacheManager Modifier and Type Field Description protected Supplier<CacheManager>AbstractCachingConfiguration. cacheManagerMethods in org.springframework.cache.annotation that return CacheManager Modifier and Type Method Description CacheManagerCachingConfigurer. cacheManager()Return the cache manager bean to use for annotation-driven cache management.CacheManagerCachingConfigurerSupport. cacheManager()Uses of CacheManager in org.springframework.cache.caffeine
Classes in org.springframework.cache.caffeine that implement CacheManager Modifier and Type Class Description classCaffeineCacheManagerCacheManagerimplementation that lazily buildsCaffeineCacheinstances for eachCaffeineCacheManager.getCache(java.lang.String)request.Uses of CacheManager in org.springframework.cache.concurrent
Classes in org.springframework.cache.concurrent that implement CacheManager Modifier and Type Class Description classConcurrentMapCacheManagerCacheManagerimplementation that lazily buildsConcurrentMapCacheinstances for eachConcurrentMapCacheManager.getCache(java.lang.String)request.Uses of CacheManager in org.springframework.cache.ehcache
Classes in org.springframework.cache.ehcache that implement CacheManager Modifier and Type Class Description classEhCacheCacheManagerCacheManager backed by an EhCacheCacheManager.Uses of CacheManager in org.springframework.cache.interceptor
Methods in org.springframework.cache.interceptor that return CacheManager Modifier and Type Method Description CacheManagerAbstractCacheResolver. getCacheManager()Return theCacheManagerthat this instance uses.Methods in org.springframework.cache.interceptor with parameters of type CacheManager Modifier and Type Method Description voidAbstractCacheResolver. 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 CacheManager Constructor Description AbstractCacheResolver(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.jcache
Classes in org.springframework.cache.jcache that implement CacheManager Modifier and Type Class Description classJCacheCacheManagerCacheManagerimplementation backed by a JCachejavax.cache.CacheManager.Uses of CacheManager in org.springframework.cache.jcache.interceptor
Methods in org.springframework.cache.jcache.interceptor that return CacheManager Modifier and Type Method Description CacheManagerDefaultJCacheOperationSource. getCacheManager()Return the specified cache manager to use, if any.protected CacheManagerDefaultJCacheOperationSource. getDefaultCacheManager()Methods in org.springframework.cache.jcache.interceptor with parameters of type CacheManager Modifier and Type Method Description voidDefaultJCacheOperationSource. setCacheManager(CacheManager cacheManager)Set the defaultCacheManagerto use to lookup cache by name.Constructors in org.springframework.cache.jcache.interceptor with parameters of type CacheManager Constructor Description SimpleExceptionCacheResolver(CacheManager cacheManager)Constructor parameters in org.springframework.cache.jcache.interceptor with type arguments of type CacheManager Constructor Description DefaultJCacheOperationSource(Supplier<CacheManager> cacheManager, Supplier<CacheResolver> cacheResolver, Supplier<CacheResolver> exceptionCacheResolver, Supplier<KeyGenerator> keyGenerator)Construct a newDefaultJCacheOperationSourcewith the given cache manager, cache resolver and key generator suppliers, applying the corresponding default if a supplier is not resolvable.Uses of CacheManager in org.springframework.cache.support
Classes in org.springframework.cache.support that implement CacheManager Modifier and Type Class Description classAbstractCacheManagerAbstract base class implementing the commonCacheManagermethods.classCompositeCacheManagerCompositeCacheManagerimplementation that iterates over a given collection of delegateCacheManagerinstances.classNoOpCacheManagerA basic, no operationCacheManagerimplementation suitable for disabling caching, typically used for backing cache declarations without an actual backing store.classSimpleCacheManagerSimple cache manager working against a given collection of caches.Method parameters in org.springframework.cache.support with type arguments of type CacheManager Modifier and Type Method Description voidCompositeCacheManager. setCacheManagers(Collection<CacheManager> cacheManagers)Specify the CacheManagers to delegate to.Constructors in org.springframework.cache.support with parameters of type CacheManager Constructor Description CompositeCacheManager(CacheManager... cacheManagers)Construct a CompositeCacheManager from the given delegate CacheManagers.Uses of CacheManager in org.springframework.cache.transaction
Classes in org.springframework.cache.transaction that implement CacheManager Modifier and Type Class Description classAbstractTransactionSupportingCacheManagerBase class for CacheManager implementations that want to support built-in awareness of Spring-managed transactions.classTransactionAwareCacheManagerProxyProxy for a targetCacheManager, exposing transaction-awareCacheobjects which synchronize theirCache.put(java.lang.Object, java.lang.Object)operations with Spring-managed transactions (through Spring'sTransactionSynchronizationManager, performing the actual cache put operation only in the after-commit phase of a successful transaction.Methods in org.springframework.cache.transaction with parameters of type CacheManager Modifier and Type Method Description voidTransactionAwareCacheManagerProxy. setTargetCacheManager(CacheManager targetCacheManager)Set the target CacheManager to proxy.Constructors in org.springframework.cache.transaction with parameters of type CacheManager Constructor Description TransactionAwareCacheManagerProxy(CacheManager targetCacheManager)Create a new TransactionAwareCacheManagerProxy for the given target CacheManager.Uses of CacheManager in org.springframework.web.reactive.resource
Constructors in org.springframework.web.reactive.resource with parameters of type CacheManager Constructor Description CachingResourceResolver(CacheManager cacheManager, String cacheName)CachingResourceTransformer(CacheManager cacheManager, String cacheName)Uses of CacheManager in org.springframework.web.servlet.resource
Constructors in org.springframework.web.servlet.resource with parameters of type CacheManager Constructor Description CachingResourceResolver(CacheManager cacheManager, String cacheName)CachingResourceTransformer(CacheManager cacheManager, String cacheName)