abstract class AbstractCacheManager : CacheManager, InitializingBean
Abstract base class implementing the common CacheManager methods. Useful for 'static' environments where the backing caches do not change.
Author
Costin Leau
Author
Juergen Hoeller
Author
Stephane Nicoll
Since
3.1
AbstractCacheManager()
Abstract base class implementing the common CacheManager methods. Useful for 'static' environments where the backing caches do not change. |
open fun afterPropertiesSet(): Unit |
|
open fun getCache(name: String): Cache |
|
open fun getCacheNames(): MutableCollection<String> |
|
open fun initializeCaches(): Unit
Initialize the static configuration of caches. Triggered on startup through |
open class SimpleCacheManager : AbstractCacheManager
Simple cache manager working against a given collection of caches. Useful for testing or simple caching declarations. |