Search Java Classes and Packages

Search Java Frameworks and Libraries

255581 classes and counting ...
Search Tips Index Status



#Org.springframework.cache Classes and Interfaces - 87 results found.
NameDescriptionTypePackageFramework
AbstractCacheInvokerA base component for invoking Cache operations and using aconfigurable CacheErrorHandler when an exception occurs.Classorg.springframework.cache.interceptorSpring MVC
AbstractCacheManagerAbstract base class implementing the common CacheManager methods.Classorg.springframework.cache.supportSpring MVC
AbstractCacheResolverA base CacheResolver implementation that requires the concreteSince:4.Classorg.springframework.cache.interceptorSpring MVC
AbstractCachingConfigurationAbstract base @Configuration class providing common structurefor enabling Spring's annotation-driven cache management capability.Classorg.springframework.cache.annotationSpring MVC
AbstractFallbackCacheOperationSourceAbstract implementation of CacheOperation that cachesattributes for methods and implements a fallback policy: 1.Classorg.springframework.cache.interceptorSpring MVC
AbstractFallbackJCacheOperationSourceAbstract implementation of JCacheOperationSource that caches attributesfor methods and implements a fallback policy: 1.Classorg.springframework.cache.jcache.interceptorSpring MVC
AbstractJCacheConfigurationAbstract JSR-107 specific @Configuration class providing commonstructure for enabling JSR-107 annotation-driven cache management capability.Classorg.springframework.cache.jcache.configSpring MVC
AbstractTransactionSupportingCacheManagerBase class for CacheManager implementations that want to support built-inawareness of Spring-managed transactions.Classorg.springframework.cache.transactionSpring MVC
AbstractValueAdaptingCacheCommon base class for Cache implementations that need to adaptnull values (and potentially other such special values) beforeClassorg.springframework.cache.supportSpring MVC
AnnotationCacheOperationSourceThis class reads Spring's Cacheable, CachePut and CacheEvictannotations and exposes corresponding caching operation definition to Spring's cacheClassorg.springframework.cache.annotationSpring MVC
AnnotationCacheOperationSource .CacheOperationProviderCallback interface providing CacheOperation instance(s) based ona given CacheAnnotationParser.Interfaceorg.springframework.cache.annotation.AnnotationCacheOperationSourceSpring MVC
AnnotationJCacheOperationSourcethe JSR-107 CacheResult, CachePut, CacheRemove andCacheRemoveAll annotations.Classorg.springframework.cache.jcache.interceptorSpring MVC
AspectJCachingConfiguration@Configuration class that registers the Spring infrastructure beans necessaryto enable AspectJ-based annotation-driven cache management.Classorg.springframework.cache.aspectjSpring MVC
AspectJJCacheConfiguration@Configuration class that registers the Spring infrastructure beans necessaryto enable AspectJ-based annotation-driven cache management for standard JSR-107Classorg.springframework.cache.aspectjSpring MVC
BasicOperationThe base interface that all cache operations must implement.Interfaceorg.springframework.cache.interceptorSpring MVC
BeanFactoryCacheOperationSourceAdvisorAdvisor driven by a CacheOperationSource, used to include acache advice bean for methods that are cacheable.Classorg.springframework.cache.interceptorSpring MVC
BeanFactoryJCacheOperationSourceAdvisorAdvisor driven by a JCacheOperationSource, used to include acache advice bean for methods that are cacheable.Classorg.springframework.cache.jcache.interceptorSpring MVC
CacheInterface that defines common cache operations.Interfaceorg.springframework.cacheSpring MVC
Cache .ValueWrapperA (wrapper) object representing a cache value.Interfaceorg.springframework.cache.CacheSpring MVC
CacheableAnnotation indicating that the result of invoking a method (or all methodsin a class) can be cached.Classorg.springframework.cache.annotationSpring MVC
CacheableOperationClass describing a cache 'cacheable' operation.Classorg.springframework.cache.interceptorSpring MVC
CacheAnnotationParserStrategy interface for parsing known caching annotation types.Interfaceorg.springframework.cache.annotationSpring MVC
CacheAspectSupportBase class for caching aspects, such as the CacheInterceptoror an AspectJ aspect.Classorg.springframework.cache.interceptorSpring MVC
CacheAspectSupport .CacheOperationMetadataMetadata of a cache operation that does not depend on a particular invocationwhich makes it a good candidate for caching.Classorg.springframework.cache.interceptor.CacheAspectSupportSpring MVC
CacheConfig@CacheConfig provides a mechanism for sharing common cache-relatedsettings at the class level.Classorg.springframework.cache.annotationSpring MVC
CacheErrorHandlerA strategy for handling cache-related errors.Interfaceorg.springframework.cache.interceptorSpring MVC
CacheEvictAnnotation indicating that a method (or all methods on a class) triggers acache evict operation.Classorg.springframework.cache.annotationSpring MVC
CacheEvictOperationClass describing a cache 'evict' operation.Classorg.springframework.cache.interceptorSpring MVC
CacheInterceptorAOP Alliance MethodInterceptor for declarative cachemanagement using the common Spring caching infrastructureClassorg.springframework.cache.interceptorSpring MVC
CacheManagementConfigUtilsConfiguration constants for internal sharing across subpackages.Classorg.springframework.cache.configSpring MVC
CacheManagerSpring's central cache manager SPI.Interfaceorg.springframework.cacheSpring MVC
CacheNamespaceHandlerNamespaceHandler allowing for the configuration of declarativecache management using either XML or using annotations.Classorg.springframework.cache.configSpring MVC
CacheOperationBase class for cache operations.Classorg.springframework.cache.interceptorSpring MVC
CacheOperationInvocationContextRepresentation of the context of the invocation of a cache operation.Interfaceorg.springframework.cache.interceptorSpring MVC
CacheOperationInvokerAbstract the invocation of a cache operation.Interfaceorg.springframework.cache.interceptorSpring MVC
CacheOperationInvoker .ThrowableWrapperWrap any exception thrown while invoking CacheOperationInvoker.Classorg.springframework.cache.interceptor.CacheOperationInvokerSpring MVC
CacheOperationSourceInterface used by CacheInterceptor.Interfaceorg.springframework.cache.interceptorSpring MVC
CacheProxyFactoryBeanProxy factory bean for simplified declarative caching handling.Classorg.springframework.cache.interceptorSpring MVC
CachePutAnnotation indicating that a method (or all methods on a class) triggers acache put operation.Classorg.springframework.cache.annotationSpring MVC
CachePutOperationClass describing a cache 'put' operation.Classorg.springframework.cache.interceptorSpring MVC
CacheResolverDetermine the Cache instance(s) to use for an intercepted method invocation.Interfaceorg.springframework.cache.interceptorSpring MVC
CachingGroup annotation for multiple cache annotations (of different or the same type).Classorg.springframework.cache.annotationSpring MVC
CachingConfigurationSelectorSelects which implementation of AbstractCachingConfiguration should be usedbased on the value of EnableCaching.Classorg.springframework.cache.annotationSpring MVC
CachingConfigurerInterface to be implemented by @Configuration classes annotated with @EnableCaching that wish or need tospecify explicitly how caches are resolved and how keys are generated for annotation-drivenInterfaceorg.springframework.cache.annotationSpring MVC
CachingConfigurerSupportAn implementation of CachingConfigurer with empty methods allowingsub-classes to override only the methods they're interested in.Classorg.springframework.cache.annotationSpring MVC
CompositeCacheManagerComposite CacheManager implementation that iterates overa given collection of delegate CacheManager instances.Classorg.springframework.cache.supportSpring MVC
CompositeCacheOperationSourceComposite CacheOperationSource implementation that iteratesover a given array of CacheOperationSource instances.Classorg.springframework.cache.interceptorSpring MVC
ConcurrentMapCacheSimple Cache implementation based on thecore JDK java.Classorg.springframework.cache.concurrentSpring MVC
ConcurrentMapCacheFactoryBeanFactoryBean for easy configuration of a ConcurrentMapCachewhen used within a Spring container.Classorg.springframework.cache.concurrentSpring MVC
ConcurrentMapCacheManagerCacheManager implementation that lazily builds ConcurrentMapCacheinstances for each getCache(java.Classorg.springframework.cache.concurrentSpring MVC
DefaultJCacheOperationSourceThe default JCacheOperationSource implementation delegatingdefault operations to configurable services with sensible defaultsClassorg.springframework.cache.jcache.interceptorSpring MVC
DefaultKeyGeneratorDefault key generator.Classorg.springframework.cache.interceptorSpring MVC
EhCacheCacheCache implementation on top of an Ehcache instance.Classorg.springframework.cache.ehcacheSpring MVC
EhCacheCacheManagerCacheManager backed by an EhCache CacheManager.Classorg.springframework.cache.ehcacheSpring MVC
EhCacheFactoryBeanFactoryBean that creates a named EhCache Cache instance(or a decorator that implements the Ehcache interface),Classorg.springframework.cache.ehcacheSpring MVC
EhCacheManagerFactoryBeanFactoryBean that exposes an EhCache CacheManagerinstance (independent or shared), configured from a specified config location.Classorg.springframework.cache.ehcacheSpring MVC
EhCacheManagerUtilsConvenient builder methods for EhCache 2.Classorg.springframework.cache.ehcacheSpring MVC
EnableCachingEnables Spring's annotation-driven cache management capability, similar tothe support found in Spring's XML namespace.Classorg.springframework.cache.annotationSpring MVC
GuavaCacheSpring Cache adapter implementationon top of a Guava Cache instance.Classorg.springframework.cache.guavaSpring MVC
GuavaCacheManagerCacheManager implementation that lazily builds GuavaCacheinstances for each getCache(java.Classorg.springframework.cache.guavaSpring MVC
JCacheAspectSupportBase class for JSR-107 caching aspects, such as the JCacheInterceptoror an AspectJ aspect.Classorg.springframework.cache.jcache.interceptorSpring MVC
JCacheCacheCache implementation on top of aNote: This class has been updated for JCache 1.Classorg.springframework.cache.jcacheSpring MVC
JCacheCacheManagerCacheManager implementationbacked by a JCache CacheManager.Classorg.springframework.cache.jcacheSpring MVC
JCacheConfigurerExtension of CachingConfigurer for the JSR-107 implementation.Interfaceorg.springframework.cache.jcache.configSpring MVC
JCacheConfigurerSupportAn extension of CachingConfigurerSupport that also implementsUsers of JSR-107 annotations may extend from this class rather thanClassorg.springframework.cache.jcache.configSpring MVC
JCacheInterceptorAOP Alliance MethodInterceptor for declarative cachemanagement using JSR-107 caching annotations.Classorg.springframework.cache.jcache.interceptorSpring MVC
JCacheManagerFactoryBeanFactoryBean for a JCache CacheManager,obtaining a pre-defined CacheManager by name through the standardClassorg.springframework.cache.jcacheSpring MVC
JCacheOperationModel the base of JSR-107 cache operation.Interfaceorg.springframework.cache.jcache.interceptorSpring MVC
JCacheOperationSourceInterface used by JCacheInterceptor.Interfaceorg.springframework.cache.jcache.interceptorSpring MVC
JCacheOperationSourcePointcutA Pointcut that matches if the underlying JCacheOperationSourcehas an operation for a given method.Classorg.springframework.cache.jcache.interceptorSpring MVC
KeyGeneratorCache key generator.Interfaceorg.springframework.cache.interceptorSpring MVC
NamedCacheResolverA CacheResolver that forces the resolution to a configurablecollection of name(s) against a given CacheManager.Classorg.springframework.cache.interceptorSpring MVC
NameMatchCacheOperationSourceSimple CacheOperationSource implementation that allows attributes to be matchedSince:3.Classorg.springframework.cache.interceptorSpring MVC
NoOpCacheManagerA basic, no operation CacheManager implementation suitablefor disabling caching, typically used for backing cache declarationsClassorg.springframework.cache.supportSpring MVC
NullValueSimple serializable class that serves as a null replacementfor cache stores which otherwise do not support null values.Classorg.springframework.cache.supportSpring MVC
ProxyCachingConfiguration@Configuration class that registers the Spring infrastructure beans necessaryto enable proxy-based annotation-driven cache management.Classorg.springframework.cache.annotationSpring MVC
ProxyJCacheConfiguration@Configuration class that registers the Spring infrastructure beans necessaryto enable proxy-based annotation-driven JSR-107 cache management.Classorg.springframework.cache.jcache.configSpring MVC
SimpleCacheErrorHandlerA simple CacheErrorHandler that does not handle theexception at all, simply throwing it back at the client.Classorg.springframework.cache.interceptorSpring MVC
SimpleCacheManagerSimple cache manager working against a given collection of caches.Classorg.springframework.cache.supportSpring MVC
SimpleCacheResolverA simple CacheResolver that resolves the Cache instance(s)based on a configurable CacheManager and the name of theClassorg.springframework.cache.interceptorSpring MVC
SimpleExceptionCacheResolverA simple CacheResolver that resolves the exception cachebased on a configurable CacheManager and the name of theClassorg.springframework.cache.jcache.interceptorSpring MVC
SimpleKeyA simple key as returned from the SimpleKeyGenerator.Classorg.springframework.cache.interceptorSpring MVC
SimpleKeyGeneratorSimple key generator.Classorg.springframework.cache.interceptorSpring MVC
SimpleValueWrapperStraightforward implementation of Cache.Classorg.springframework.cache.supportSpring MVC
SpringCacheAnnotationParserStrategy implementation for parsing Spring's Caching, Cacheable,CacheEvict, and CachePut annotations.Classorg.springframework.cache.annotationSpring MVC
TransactionAwareCacheDecoratorCache decorator which synchronizes its put(java.Classorg.springframework.cache.transactionSpring MVC
TransactionAwareCacheManagerProxyProxy for a target CacheManager, exposing transaction-aware Cache objectswhich synchronize their Cache.Classorg.springframework.cache.transactionSpring MVC