Class CacheAspectSupport
java.lang.Object
org.springframework.cache.interceptor.AbstractCacheInvoker
org.springframework.cache.interceptor.CacheAspectSupport
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanFactoryAware,org.springframework.beans.factory.InitializingBean,org.springframework.beans.factory.SmartInitializingSingleton
- Direct Known Subclasses:
CacheInterceptor
public abstract class CacheAspectSupport
extends AbstractCacheInvoker
implements org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.SmartInitializingSingleton
Base class for caching aspects, such as the
CacheInterceptor or an
AspectJ aspect.
This enables the underlying Spring caching infrastructure to be used easily to implement an aspect for any aspect system.
Subclasses are responsible for calling relevant methods in the correct order.
Uses the Strategy design pattern. A CacheOperationSource is
used for determining caching operations, a KeyGenerator will build the
cache keys, and a CacheResolver will resolve the actual cache(s) to use.
Note: A cache aspect is serializable but does not perform any actual caching after deserialization.
- Since:
- 3.1
- Author:
- Costin Leau, Juergen Hoeller, Chris Beams, Phillip Webb, Sam Brannen, Stephane Nicoll
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected classACacheOperationInvocationContextcontext for aCacheOperation.protected static classMetadata of a cache operation that does not depend on a particular invocation which makes it a good candidate for caching. -
Field Summary
FieldsFields inherited from class org.springframework.cache.interceptor.AbstractCacheInvoker
errorHandler -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidvoidprotected voidClear the cached metadata.voidconfigure(Supplier<CacheErrorHandler> errorHandler, Supplier<KeyGenerator> keyGenerator, Supplier<CacheResolver> cacheResolver, Supplier<CacheManager> cacheManager) Configure this aspect with the given error handler, key generator and cache resolver/manager suppliers, applying the corresponding default if a supplier is not resolvable.protected Objectexecute(CacheOperationInvoker invoker, Object target, Method method, Object[] args) protected <T> TRetrieve a bean with the specified name and type.getCacheOperationMetadata(CacheOperation operation, Method method, Class<?> targetClass) Return theCacheAspectSupport.CacheOperationMetadatafor the specified operation.Return the CacheOperationSource for this cache aspect.Return the defaultCacheResolverthat this cache aspect delegates to.protected Collection<? extends Cache>getCaches(CacheOperationInvocationContext<CacheOperation> context, CacheResolver cacheResolver) Return the defaultKeyGeneratorthat this cache aspect delegates to.protected CacheAspectSupport.CacheOperationContextgetOperationContext(CacheOperation operation, Method method, Object[] args, Object target, Class<?> targetClass) protected ObjectinvokeOperation(CacheOperationInvoker invoker) Execute the underlying operation (typically in case of cache miss) and return the result of the invocation.protected StringmethodIdentification(Method method, Class<?> targetClass) Convenience method to return a String representation of this Method for use in logging.voidsetBeanFactory(org.springframework.beans.factory.BeanFactory beanFactory) Set the containingBeanFactoryforCacheManagerand other service lookups.voidsetCacheManager(CacheManager cacheManager) Set theCacheManagerto use to create a defaultCacheResolver.voidsetCacheOperationSource(CacheOperationSource cacheOperationSource) Set the CacheOperationSource for this cache aspect.voidsetCacheOperationSources(CacheOperationSource... cacheOperationSources) Set one or more cache operation sources which are used to find the cache attributes.voidsetCacheResolver(CacheResolver cacheResolver) Set the defaultCacheResolverthat this cache aspect should delegate to if no specific cache resolver has been set for the operation.voidsetKeyGenerator(KeyGenerator keyGenerator) Set the defaultKeyGeneratorthat this cache aspect should delegate to if no specific key generator has been set for the operation.Methods inherited from class org.springframework.cache.interceptor.AbstractCacheInvoker
doClear, doEvict, doGet, doPut, getErrorHandler, setErrorHandler
-
Field Details
-
logger
protected final org.apache.commons.logging.Log logger
-
-
Constructor Details
-
CacheAspectSupport
public CacheAspectSupport()
-
-
Method Details
-
configure
public void configure(@Nullable Supplier<CacheErrorHandler> errorHandler, @Nullable Supplier<KeyGenerator> keyGenerator, @Nullable Supplier<CacheResolver> cacheResolver, @Nullable Supplier<CacheManager> cacheManager) Configure this aspect with the given error handler, key generator and cache resolver/manager suppliers, applying the corresponding default if a supplier is not resolvable.- Since:
- 5.1
-
setCacheOperationSources
Set one or more cache operation sources which are used to find the cache attributes. If more than one source is provided, they will be aggregated using aCompositeCacheOperationSource. -
setCacheOperationSource
Set the CacheOperationSource for this cache aspect. -
getCacheOperationSource
Return the CacheOperationSource for this cache aspect. -
setKeyGenerator
Set the defaultKeyGeneratorthat this cache aspect should delegate to if no specific key generator has been set for the operation.The default is a
SimpleKeyGenerator. -
getKeyGenerator
Return the defaultKeyGeneratorthat this cache aspect delegates to. -
setCacheResolver
Set the defaultCacheResolverthat this cache aspect should delegate to if no specific cache resolver has been set for the operation.The default resolver resolves the caches against their names and the default cache manager.
-
getCacheResolver
Return the defaultCacheResolverthat this cache aspect delegates to. -
setCacheManager
Set theCacheManagerto use to create a defaultCacheResolver. Replace the currentCacheResolver, if any. -
setBeanFactory
public void setBeanFactory(org.springframework.beans.factory.BeanFactory beanFactory) Set the containingBeanFactoryforCacheManagerand other service lookups.- Specified by:
setBeanFactoryin interfaceorg.springframework.beans.factory.BeanFactoryAware- Since:
- 4.3
-
afterPropertiesSet
public void afterPropertiesSet()- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean
-
afterSingletonsInstantiated
public void afterSingletonsInstantiated()- Specified by:
afterSingletonsInstantiatedin interfaceorg.springframework.beans.factory.SmartInitializingSingleton
-
methodIdentification
Convenience method to return a String representation of this Method for use in logging. Can be overridden in subclasses to provide a different identifier for the given method.- Parameters:
method- the method we're interested intargetClass- class the method is on- Returns:
- log message identifying this method
- See Also:
-
ClassUtils.getQualifiedMethodName(java.lang.reflect.Method)
-
getCaches
protected Collection<? extends Cache> getCaches(CacheOperationInvocationContext<CacheOperation> context, CacheResolver cacheResolver) -
getOperationContext
protected CacheAspectSupport.CacheOperationContext getOperationContext(CacheOperation operation, Method method, Object[] args, Object target, Class<?> targetClass) -
getCacheOperationMetadata
protected CacheAspectSupport.CacheOperationMetadata getCacheOperationMetadata(CacheOperation operation, Method method, Class<?> targetClass) Return theCacheAspectSupport.CacheOperationMetadatafor the specified operation.Resolve the
CacheResolverand theKeyGeneratorto be used for the operation.- Parameters:
operation- the operationmethod- the method on which the operation is invokedtargetClass- the target type- Returns:
- the resolved metadata for the operation
-
getBean
Retrieve a bean with the specified name and type. Used to resolve services that are referenced by name in aCacheOperation.- Parameters:
name- the name of the bean, as defined by the cache operationserviceType- the type expected by the operation's service reference- Returns:
- the bean matching the expected type, qualified by the given name
- Throws:
org.springframework.beans.factory.NoSuchBeanDefinitionException- if such bean does not exist- See Also:
-
clearMetadataCache
protected void clearMetadataCache()Clear the cached metadata. -
execute
@Nullable protected Object execute(CacheOperationInvoker invoker, Object target, Method method, Object[] args) -
invokeOperation
Execute the underlying operation (typically in case of cache miss) and return the result of the invocation. If an exception occurs it will be wrapped in aCacheOperationInvoker.ThrowableWrapper: the exception can be handled or modified but it must be wrapped in aCacheOperationInvoker.ThrowableWrapperas well.- Parameters:
invoker- the invoker handling the operation being cached- Returns:
- the result of the invocation
- See Also:
-