Class JCacheConfigurerSupport
java.lang.Object
org.springframework.cache.annotation.CachingConfigurerSupport
org.springframework.cache.jcache.config.JCacheConfigurerSupport
- All Implemented Interfaces:
- CachingConfigurer,- JCacheConfigurer
@Deprecated(since="6.0")
public class JCacheConfigurerSupport
extends CachingConfigurerSupport
implements JCacheConfigurer
Deprecated.
An extension of 
CachingConfigurerSupport that also implements
 JCacheConfigurer.
 Users of JSR-107 annotations may extend from this class rather than
 implementing from JCacheConfigurer directly.
- Since:
- 4.1
- Author:
- Stephane Nicoll
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionDeprecated.Return theCacheResolverbean to use to resolve exception caches for annotation-driven cache management.Methods inherited from class org.springframework.cache.annotation.CachingConfigurerSupportcacheManager, cacheResolver, errorHandler, keyGeneratorMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.cache.annotation.CachingConfigurercacheManager, cacheResolver, errorHandler, keyGenerator
- 
Constructor Details- 
JCacheConfigurerSupportpublic JCacheConfigurerSupport()Deprecated.
 
- 
- 
Method Details- 
exceptionCacheResolverDeprecated.Description copied from interface:JCacheConfigurerReturn theCacheResolverbean to use to resolve exception caches for annotation-driven cache management. Implementations must explicitly declare@Bean, e.g.@Configuration @EnableCaching public class AppConfig implements JCacheConfigurer { @Bean // important! @Override public CacheResolver exceptionCacheResolver() { // configure and return CacheResolver instance } // ... }SeeEnableCachingfor more complete examples.- Specified by:
- exceptionCacheResolverin interface- JCacheConfigurer
 
 
- 
JCacheConfigurerdirectly