|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.cache.interceptor.AbstractFallbackCacheOperationSource
public abstract class AbstractFallbackCacheOperationSource
Abstract implementation of CacheOperation
that caches
attributes for methods and implements a fallback policy: 1. specific
target method; 2. target class; 3. declaring method; 4. declaring
class/interface.
Defaults to using the target class's caching attribute if none is associated with the target method. Any caching attribute associated with the target method completely overrides a class caching attribute. If none found on the target class, the interface that the invoked method has been called through (in case of a JDK proxy) will be checked.
This implementation caches attributes by method after they are first used. If it is ever desirable to allow dynamic changing of cacheable attributes (which is very unlikely), caching could be made configurable.
Field Summary | |
---|---|
protected Log |
logger
Logger available to subclasses. |
Constructor Summary | |
---|---|
AbstractFallbackCacheOperationSource()
|
Method Summary | |
---|---|
protected boolean |
allowPublicMethodsOnly()
Should only public methods be allowed to have caching semantics? |
protected abstract Collection<CacheOperation> |
findCacheOperations(Class<?> clazz)
Subclasses need to implement this to return the caching attribute for the given class, if any. |
protected abstract Collection<CacheOperation> |
findCacheOperations(Method method)
Subclasses need to implement this to return the caching attribute for the given method, if any. |
protected Object |
getCacheKey(Method method,
Class<?> targetClass)
Determine a cache key for the given method and target class. |
Collection<CacheOperation> |
getCacheOperations(Method method,
Class<?> targetClass)
Determine the caching attribute for this method invocation. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected final Log logger
As this base class is not marked Serializable, the logger will be recreated after serialization - provided that the concrete subclass is Serializable.
Constructor Detail |
---|
public AbstractFallbackCacheOperationSource()
Method Detail |
---|
public Collection<CacheOperation> getCacheOperations(Method method, Class<?> targetClass)
Defaults to the class's caching attribute if no method attribute is found.
getCacheOperations
in interface CacheOperationSource
method
- the method for the current invocation (never null
)targetClass
- the target class for this invocation (may be null
)
CacheOperation
for this method, or null
if the method
is not cacheableprotected Object getCacheKey(Method method, Class<?> targetClass)
Must not produce same key for overloaded methods. Must produce same key for different instances of the same method.
method
- the method (never null
)targetClass
- the target class (may be null
)
null
)protected abstract Collection<CacheOperation> findCacheOperations(Method method)
method
- the method to retrieve the attribute for
null
if none)protected abstract Collection<CacheOperation> findCacheOperations(Class<?> clazz)
clazz
- the class to retrieve the attribute for
null
if none)protected boolean allowPublicMethodsOnly()
The default implementation returns false
.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |