Class SpringCacheAnnotationParser
java.lang.Object
org.springframework.cache.annotation.SpringCacheAnnotationParser
- All Implemented Interfaces:
Serializable
,CacheAnnotationParser
public class SpringCacheAnnotationParser
extends Object
implements CacheAnnotationParser, Serializable
Strategy implementation for parsing Spring's
Caching
, Cacheable
,
CacheEvict
, and CachePut
annotations.- Since:
- 3.1
- Author:
- Costin Leau, Juergen Hoeller, Chris Beams, Phillip Webb, Stephane Nicoll, Sam Brannen
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
int
hashCode()
boolean
isCandidateClass
(Class<?> targetClass) Determine whether the given class is a candidate for cache operations in the annotation format of thisCacheAnnotationParser
.parseCacheAnnotations
(Class<?> type) Parse the cache definition for the given class, based on an annotation type understood by this parser.parseCacheAnnotations
(Method method) Parse the cache definition for the given method, based on an annotation type understood by this parser.
-
Constructor Details
-
SpringCacheAnnotationParser
public SpringCacheAnnotationParser()
-
-
Method Details
-
isCandidateClass
Description copied from interface:CacheAnnotationParser
Determine whether the given class is a candidate for cache operations in the annotation format of thisCacheAnnotationParser
.If this method returns
false
, the methods on the given class will not get traversed for#parseCacheAnnotations
introspection. Returningfalse
is therefore an optimization for non-affected classes, whereastrue
simply means that the class needs to get fully introspected for each method on the given class individually.- Specified by:
isCandidateClass
in interfaceCacheAnnotationParser
- Parameters:
targetClass
- the class to introspect- Returns:
false
if the class is known to have no cache operation annotations at class or method level;true
otherwise. The default implementation returnstrue
, leading to regular introspection.
-
parseCacheAnnotations
Description copied from interface:CacheAnnotationParser
Parse the cache definition for the given class, based on an annotation type understood by this parser.This essentially parses a known cache annotation into Spring's metadata attribute class. Returns
null
if the class is not cacheable.- Specified by:
parseCacheAnnotations
in interfaceCacheAnnotationParser
- Parameters:
type
- the annotated class- Returns:
- the configured caching operation, or
null
if none found - See Also:
-
parseCacheAnnotations
Description copied from interface:CacheAnnotationParser
Parse the cache definition for the given method, based on an annotation type understood by this parser.This essentially parses a known cache annotation into Spring's metadata attribute class. Returns
null
if the method is not cacheable.- Specified by:
parseCacheAnnotations
in interfaceCacheAnnotationParser
- Parameters:
method
- the annotated method- Returns:
- the configured caching operation, or
null
if none found - See Also:
-
equals
-
hashCode
public int hashCode()
-