Package org.springframework.cache.annotation

JDK 1.5+ annotation for caching demarcation.

See:
          Description

Interface Summary
CacheAnnotationParser Strategy interface for parsing known caching annotation types.
 

Class Summary
AnnotationCacheOperationSource Implementation of the CacheOperationSource interface for working with caching metadata in JDK 1.5+ annotation format.
SpringCachingAnnotationParser Strategy implementation for parsing Spring's Cacheable and CacheEvict annotations.
 

Annotation Types Summary
Cacheable Annotation indicating that a method (or all the methods on a class) can be cached.
CacheEvict Annotation indicating that a method (or all methods on a class) trigger(s) a cache invalidate operation.
 

Package org.springframework.cache.annotation Description

JDK 1.5+ annotation for caching demarcation. Hooked into Spring's caching interception infrastructure via CacheDefinitionSource implementation.