public interface CacheAnnotationParser
AnnotationCacheOperationSource
delegates to such parsers
for supporting specific annotation types such as Spring's own
Cacheable
, CachePut
andCacheEvict
.AnnotationCacheOperationSource
,
SpringCacheAnnotationParser
Modifier and Type | Method and Description |
---|---|
Collection<CacheOperation> |
parseCacheAnnotations(Class<?> type)
Parse the cache definition for the given class,
based on an annotation type understood by this parser.
|
Collection<CacheOperation> |
parseCacheAnnotations(Method method)
Parse the cache definition for the given method,
based on an annotation type understood by this parser.
|
@Nullable Collection<CacheOperation> parseCacheAnnotations(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 foundAnnotationCacheOperationSource.findCacheOperations(Class)
@Nullable Collection<CacheOperation> parseCacheAnnotations(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 foundAnnotationCacheOperationSource.findCacheOperations(Method)