@Configuration @ConditionalOnClass(value=org.springframework.cache.CacheManager.class) @ConditionalOnBean(value=org.springframework.cache.interceptor.CacheAspectSupport.class) @ConditionalOnMissingBean(value=org.springframework.cache.CacheManager.class, name="cacheResolver") @EnableConfigurationProperties(value=CacheProperties.class) @Import(value=org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration.CacheConfigurationImportSelector.class) public class CacheAutoConfiguration extends Object
Auto-configuration
for the cache abstraction. Creates a
CacheManager
if necessary when caching is enabled via EnableCaching
.
Cache store can be auto-detected or specified explicitly via configuration.
EnableCaching
Modifier and Type | Class and Description |
---|---|
protected static class |
CacheAutoConfiguration.CacheManagerJpaDependencyConfiguration |
Constructor and Description |
---|
CacheAutoConfiguration() |
Modifier and Type | Method and Description |
---|---|
org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration.CacheManagerValidator |
cacheAutoConfigurationValidator(CacheProperties cacheProperties,
ObjectProvider<CacheManager> cacheManager) |
CacheManagerCustomizers |
cacheManagerCustomizers(ObjectProvider<List<CacheManagerCustomizer<?>>> customizers) |
@Bean @ConditionalOnMissingBean public CacheManagerCustomizers cacheManagerCustomizers(ObjectProvider<List<CacheManagerCustomizer<?>>> customizers)
@Bean public org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration.CacheManagerValidator cacheAutoConfigurationValidator(CacheProperties cacheProperties, ObjectProvider<CacheManager> cacheManager)
Copyright © 2019 Pivotal Software, Inc.. All rights reserved.