Uses of Package
org.springframework.cache.annotation
Packages that use org.springframework.cache.annotation Package Description org.springframework.cache.annotation Annotations and supporting classes for declarative cache management.org.springframework.cache.aspectj org.springframework.cache.jcache.config Support package for declarative JSR-107 caching configuration.Classes in org.springframework.cache.annotation used by org.springframework.cache.annotation Class Description AbstractCachingConfiguration Abstract base@Configuration
class providing common structure for enabling Spring's annotation-driven cache management capability.AnnotationCacheOperationSource.CacheOperationProvider Callback interface providingCacheOperation
instance(s) based on a givenCacheAnnotationParser
.Cacheable Annotation indicating that the result of invoking a method (or all methods in a class) can be cached.CacheAnnotationParser Strategy interface for parsing known caching annotation types.CacheEvict Annotation indicating that a method (or all methods on a class) triggers acache evict
operation.CachePut Annotation indicating that a method (or all methods on a class) triggers acache put
operation.CachingConfigurer Interface to be implemented by @Configuration
classes annotated with @EnableCaching
that wish or need to specify explicitly how caches are resolved and how keys are generated for annotation-driven cache management.Classes in org.springframework.cache.annotation used by org.springframework.cache.aspectj Class Description AbstractCachingConfiguration Abstract base@Configuration
class providing common structure for enabling Spring's annotation-driven cache management capability.Classes in org.springframework.cache.annotation used by org.springframework.cache.jcache.config Class Description AbstractCachingConfiguration Abstract base@Configuration
class providing common structure for enabling Spring's annotation-driven cache management capability.CachingConfigurer Interface to be implemented by @Configuration
classes annotated with @EnableCaching
that wish or need to specify explicitly how caches are resolved and how keys are generated for annotation-driven cache management.CachingConfigurerSupport An implementation ofCachingConfigurer
with empty methods allowing sub-classes to override only the methods they're interested in.