public interface CacheAnnotationParser
AnnotationCacheOperationSource
delegates to such
parsers for supporting specific annotation types such as Spring's own
Cacheable
, CachePut
or CacheEvict
.Modifier and Type | Method and Description |
---|---|
java.util.Collection<CacheOperation> |
parseCacheAnnotations(java.lang.Class<?> type)
Parses the cache definition for the given class,
based on a known annotation type.
|
java.util.Collection<CacheOperation> |
parseCacheAnnotations(java.lang.reflect.Method method)
Parses the cache definition for the given method,
based on a known annotation type.
|
@Nullable java.util.Collection<CacheOperation> parseCacheAnnotations(java.lang.Class<?> type)
This essentially parses a known cache annotation into Spring's
metadata attribute class. Returns null
if the class
is not cacheable.
type
- the annotated classnull
if none was foundAnnotationCacheOperationSource.findCacheOperations(Class)
@Nullable java.util.Collection<CacheOperation> parseCacheAnnotations(java.lang.reflect.Method method)
This essentially parses a known cache annotation into Spring's
metadata attribute class. Returns null
if the method
is not cacheable.
method
- the annotated methodnull
if none was foundAnnotationCacheOperationSource.findCacheOperations(Method)