Uses of Interface
org.springframework.cache.interceptor.CacheOperationSource
Packages that use CacheOperationSource
Package
Description
Annotations and supporting classes for declarative cache management.
AOP-based solution for declarative caching demarcation.
-
Uses of CacheOperationSource in org.springframework.cache.annotation
Classes in org.springframework.cache.annotation that implement CacheOperationSourceModifier and TypeClassDescriptionclass
Implementation of theCacheOperationSource
interface for working with caching metadata in annotation format.Methods in org.springframework.cache.annotation that return CacheOperationSourceMethods in org.springframework.cache.annotation with parameters of type CacheOperationSourceModifier and TypeMethodDescriptionProxyCachingConfiguration.cacheAdvisor
(CacheOperationSource cacheOperationSource, CacheInterceptor cacheInterceptor) ProxyCachingConfiguration.cacheInterceptor
(CacheOperationSource cacheOperationSource) -
Uses of CacheOperationSource in org.springframework.cache.interceptor
Classes in org.springframework.cache.interceptor that implement CacheOperationSourceModifier and TypeClassDescriptionclass
Abstract implementation ofCacheOperationSource
that caches operations for methods and implements a fallback policy: 1.class
CompositeCacheOperationSource
implementation that iterates over a given array ofCacheOperationSource
instances.class
SimpleCacheOperationSource
implementation that allows attributes to be matched by registered name.Methods in org.springframework.cache.interceptor that return CacheOperationSourceModifier and TypeMethodDescriptionCacheAspectSupport.getCacheOperationSource()
Return the CacheOperationSource for this cache aspect.final CacheOperationSource[]
CompositeCacheOperationSource.getCacheOperationSources()
Return theCacheOperationSource
instances that thisCompositeCacheOperationSource
combines.Methods in org.springframework.cache.interceptor with parameters of type CacheOperationSourceModifier and TypeMethodDescriptionvoid
BeanFactoryCacheOperationSourceAdvisor.setCacheOperationSource
(CacheOperationSource cacheOperationSource) Set the cache operation attribute source which is used to find cache attributes.void
CacheAspectSupport.setCacheOperationSource
(CacheOperationSource cacheOperationSource) Set the CacheOperationSource for this cache aspect.void
CacheAspectSupport.setCacheOperationSources
(CacheOperationSource... cacheOperationSources) Set one or more cache operation sources which are used to find the cache attributes.void
CacheProxyFactoryBean.setCacheOperationSources
(CacheOperationSource... cacheOperationSources) Set one or more sources to find cache operations.Constructors in org.springframework.cache.interceptor with parameters of type CacheOperationSourceModifierConstructorDescriptionCompositeCacheOperationSource
(CacheOperationSource... cacheOperationSources) Create a new CompositeCacheOperationSource for the given sources.