Uses of Interface
org.springframework.cache.interceptor.CacheErrorHandler
Packages that use CacheErrorHandler Package Description org.springframework.cache.annotation Annotations and supporting classes for declarative cache management.org.springframework.cache.interceptor AOP-based solution for declarative caching demarcation.org.springframework.cache.jcache.interceptor AOP-based solution for declarative caching demarcation using JSR-107 annotations.Uses of CacheErrorHandler in org.springframework.cache.annotation
Fields in org.springframework.cache.annotation with type parameters of type CacheErrorHandler Modifier and Type Field Description protected Supplier<CacheErrorHandler>AbstractCachingConfiguration. errorHandlerMethods in org.springframework.cache.annotation that return CacheErrorHandler Modifier and Type Method Description CacheErrorHandlerCachingConfigurer. errorHandler()Return theCacheErrorHandlerto use to handle cache-related errors.CacheErrorHandlerCachingConfigurerSupport. errorHandler()Uses of CacheErrorHandler in org.springframework.cache.interceptor
Classes in org.springframework.cache.interceptor that implement CacheErrorHandler Modifier and Type Class Description classSimpleCacheErrorHandlerA simpleCacheErrorHandlerthat does not handle the exception at all, simply throwing it back at the client.Fields in org.springframework.cache.interceptor with type parameters of type CacheErrorHandler Modifier and Type Field Description protected SingletonSupplier<CacheErrorHandler>AbstractCacheInvoker. errorHandlerMethods in org.springframework.cache.interceptor that return CacheErrorHandler Modifier and Type Method Description CacheErrorHandlerAbstractCacheInvoker. getErrorHandler()Return theCacheErrorHandlerto use.Methods in org.springframework.cache.interceptor with parameters of type CacheErrorHandler Modifier and Type Method Description voidAbstractCacheInvoker. setErrorHandler(CacheErrorHandler errorHandler)Set theCacheErrorHandlerinstance to use to handle errors thrown by the cache provider.Method parameters in org.springframework.cache.interceptor with type arguments of type CacheErrorHandler Modifier and Type Method Description voidCacheAspectSupport. configure(Supplier<CacheErrorHandler> errorHandler, Supplier<KeyGenerator> keyGenerator, Supplier<CacheResolver> cacheResolver, Supplier<CacheManager> cacheManager)Configure this aspect with the given error handler, key generator and cache resolver/manager suppliers, applying the corresponding default if a supplier is not resolvable.Constructors in org.springframework.cache.interceptor with parameters of type CacheErrorHandler Constructor Description AbstractCacheInvoker(CacheErrorHandler errorHandler)Uses of CacheErrorHandler in org.springframework.cache.jcache.interceptor
Constructor parameters in org.springframework.cache.jcache.interceptor with type arguments of type CacheErrorHandler Constructor Description JCacheInterceptor(Supplier<CacheErrorHandler> errorHandler)Construct a newJCacheInterceptorwith the given error handler.