/*
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.cache.annotation;
import org.springframework.cache.CacheManager;
import org.springframework.cache.interceptor.CacheErrorHandler;
import org.springframework.cache.interceptor.CacheResolver;
import org.springframework.cache.interceptor.KeyGenerator;
import org.springframework.lang.Nullable;
Interface to be implemented by @
Configuration
classes annotated with @EnableCaching
that wish or need to specify explicitly how caches are resolved and how keys are generated for annotation-driven cache management. Consider extending CachingConfigurerSupport
, which provides a stub implementation of all interface methods. See @EnableCaching
for general examples and context; see cacheManager()
, cacheResolver()
and keyGenerator()
for detailed instructions.
Author: Chris Beams, Stephane Nicoll See Also: Since: 3.1
/**
* Interface to be implemented by @{@link org.springframework.context.annotation.Configuration
* Configuration} classes annotated with @{@link EnableCaching} that wish or need to
* specify explicitly how caches are resolved and how keys are generated for annotation-driven
* cache management. Consider extending {@link CachingConfigurerSupport}, which provides a
* stub implementation of all interface methods.
*
* <p>See @{@link EnableCaching} for general examples and context; see
* {@link #cacheManager()}, {@link #cacheResolver()} and {@link #keyGenerator()}
* for detailed instructions.
*
* @author Chris Beams
* @author Stephane Nicoll
* @since 3.1
* @see EnableCaching
* @see CachingConfigurerSupport
*/
public interface CachingConfigurer {
Return the cache manager bean to use for annotation-driven cache management. A default CacheResolver
will be initialized behind the scenes with this cache manager. For more fine-grained management of the cache resolution, consider setting the CacheResolver
directly. Implementations must explicitly declare @Bean
, e.g.
@Configuration
@EnableCaching
public class AppConfig extends CachingConfigurerSupport {
@Bean // important!
@Override
public CacheManager cacheManager() {
// configure and return CacheManager instance
}
// ...
}
See @EnableCaching
for more complete examples. /**
* Return the cache manager bean to use for annotation-driven cache
* management. A default {@link CacheResolver} will be initialized
* behind the scenes with this cache manager. For more fine-grained
* management of the cache resolution, consider setting the
* {@link CacheResolver} directly.
* <p>Implementations must explicitly declare
* {@link org.springframework.context.annotation.Bean @Bean}, e.g.
* <pre class="code">
* @Configuration
* @EnableCaching
* public class AppConfig extends CachingConfigurerSupport {
* @Bean // important!
* @Override
* public CacheManager cacheManager() {
* // configure and return CacheManager instance
* }
* // ...
* }
* </pre>
* See @{@link EnableCaching} for more complete examples.
*/
@Nullable
CacheManager cacheManager();
Return the CacheResolver
bean to use to resolve regular caches for annotation-driven cache management. This is an alternative and more powerful option of specifying the CacheManager
to use. If both a cacheManager()
and #cacheResolver()
are set, the cache manager is ignored.
Implementations must explicitly declare @Bean
, e.g.
@Configuration
@EnableCaching
public class AppConfig extends CachingConfigurerSupport {
@Bean // important!
@Override
public CacheResolver cacheResolver() {
// configure and return CacheResolver instance
}
// ...
}
See EnableCaching
for more complete examples. /**
* Return the {@link CacheResolver} bean to use to resolve regular caches for
* annotation-driven cache management. This is an alternative and more powerful
* option of specifying the {@link CacheManager} to use.
* <p>If both a {@link #cacheManager()} and {@code #cacheResolver()} are set,
* the cache manager is ignored.
* <p>Implementations must explicitly declare
* {@link org.springframework.context.annotation.Bean @Bean}, e.g.
* <pre class="code">
* @Configuration
* @EnableCaching
* public class AppConfig extends CachingConfigurerSupport {
* @Bean // important!
* @Override
* public CacheResolver cacheResolver() {
* // configure and return CacheResolver instance
* }
* // ...
* }
* </pre>
* See {@link EnableCaching} for more complete examples.
*/
@Nullable
CacheResolver cacheResolver();
Return the key generator bean to use for annotation-driven cache management. Implementations must explicitly declare @Bean
, e.g. @Configuration
@EnableCaching
public class AppConfig extends CachingConfigurerSupport {
@Bean // important!
@Override
public KeyGenerator keyGenerator() {
// configure and return KeyGenerator instance
}
// ...
}
See @EnableCaching
for more complete examples. /**
* Return the key generator bean to use for annotation-driven cache management.
* Implementations must explicitly declare
* {@link org.springframework.context.annotation.Bean @Bean}, e.g.
* <pre class="code">
* @Configuration
* @EnableCaching
* public class AppConfig extends CachingConfigurerSupport {
* @Bean // important!
* @Override
* public KeyGenerator keyGenerator() {
* // configure and return KeyGenerator instance
* }
* // ...
* }
* </pre>
* See @{@link EnableCaching} for more complete examples.
*/
@Nullable
KeyGenerator keyGenerator();
Return the CacheErrorHandler
to use to handle cache-related errors. By default,SimpleCacheErrorHandler
is used and simply throws the exception back at the client.
Implementations must explicitly declare @Bean
, e.g.
@Configuration
@EnableCaching
public class AppConfig extends CachingConfigurerSupport {
@Bean // important!
@Override
public CacheErrorHandler errorHandler() {
// configure and return CacheErrorHandler instance
}
// ...
}
See @EnableCaching
for more complete examples. /**
* Return the {@link CacheErrorHandler} to use to handle cache-related errors.
* <p>By default,{@link org.springframework.cache.interceptor.SimpleCacheErrorHandler}
* is used and simply throws the exception back at the client.
* <p>Implementations must explicitly declare
* {@link org.springframework.context.annotation.Bean @Bean}, e.g.
* <pre class="code">
* @Configuration
* @EnableCaching
* public class AppConfig extends CachingConfigurerSupport {
* @Bean // important!
* @Override
* public CacheErrorHandler errorHandler() {
* // configure and return CacheErrorHandler instance
* }
* // ...
* }
* </pre>
* See @{@link EnableCaching} for more complete examples.
*/
@Nullable
CacheErrorHandler errorHandler();
}