Package org.springframework.cache.support
Support classes for the org.springframework.cache package. Provides abstract classes for cache managers and caches.
Class Summary Class Description AbstractCacheManager Abstract base class implementing the commonCacheManagermethods.AbstractValueAdaptingCache Common base class forCacheimplementations that need to adaptnullvalues (and potentially other such special values) before passing them on to the underlying store.CompositeCacheManager CompositeCacheManagerimplementation that iterates over a given collection of delegateCacheManagerinstances.NoOpCache A no operationCacheimplementation suitable for disabling caching.NoOpCacheManager A basic, no operationCacheManagerimplementation suitable for disabling caching, typically used for backing cache declarations without an actual backing store.NullValue Simple serializable class that serves as anullreplacement for cache stores which otherwise do not supportnullvalues.SimpleCacheManager Simple cache manager working against a given collection of caches.SimpleValueWrapper Straightforward implementation ofCache.ValueWrapper, simply holding the value as given at construction and returning it fromSimpleValueWrapper.get().