类 AbstractFallbackCacheOperationSource

  • 所有已实现的接口:
    CacheOperationSource
    直接已知子类:
    AnnotationCacheOperationSource

    public abstract class AbstractFallbackCacheOperationSource
    extends Object
    implements CacheOperationSource
    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.

    从以下版本开始:
    3.1
    作者:
    Costin Leau, Juergen Hoeller
    • 字段详细资料

      • logger

        protected final Log logger
        Logger available to subclasses.

        As this base class is not marked Serializable, the logger will be recreated after serialization - provided that the concrete subclass is Serializable.

    • 方法详细资料

      • getCacheKey

        protected Object getCacheKey​(Method method,
                                     Class<?> targetClass)
        Determine a cache key for the given method and target class.

        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)
        返回:
        the cache key (never null)
      • findCacheOperations

        protected abstract Collection<CacheOperationfindCacheOperations​(Class<?> clazz)
        Subclasses need to implement this to return the caching attribute for the given class, if any.
        参数:
        clazz - the class to retrieve the attribute for
        返回:
        all caching attribute associated with this class, or null if none
      • findCacheOperations

        protected abstract Collection<CacheOperationfindCacheOperations​(Method method)
        Subclasses need to implement this to return the caching attribute for the given method, if any.
        参数:
        method - the method to retrieve the attribute for
        返回:
        all caching attribute associated with this method, or null if none
      • allowPublicMethodsOnly

        protected boolean allowPublicMethodsOnly()
        Should only public methods be allowed to have caching semantics?

        The default implementation returns false.