|
|
@ -18,14 +18,8 @@ package org.springframework.boot.autoconfigure.cache;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.PostConstruct;
|
|
|
|
import org.springframework.beans.factory.InitializingBean;
|
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.beans.BeansException;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.ObjectProvider;
|
|
|
|
import org.springframework.beans.factory.ObjectProvider;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.config.BeanDefinition;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
|
|
|
|
|
|
|
|
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
|
|
|
|
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
|
|
|
|
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
|
|
|
|
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
|
|
|
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
|
|
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
|
|
@ -46,7 +40,6 @@ import org.springframework.context.annotation.Bean;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.context.annotation.Import;
|
|
|
|
import org.springframework.context.annotation.Import;
|
|
|
|
import org.springframework.context.annotation.ImportSelector;
|
|
|
|
import org.springframework.context.annotation.ImportSelector;
|
|
|
|
import org.springframework.context.annotation.Role;
|
|
|
|
|
|
|
|
import org.springframework.core.type.AnnotationMetadata;
|
|
|
|
import org.springframework.core.type.AnnotationMetadata;
|
|
|
|
import org.springframework.orm.jpa.AbstractEntityManagerFactoryBean;
|
|
|
|
import org.springframework.orm.jpa.AbstractEntityManagerFactoryBean;
|
|
|
|
import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean;
|
|
|
|
import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean;
|
|
|
@ -73,8 +66,6 @@ import org.springframework.util.Assert;
|
|
|
|
@Import(CacheConfigurationImportSelector.class)
|
|
|
|
@Import(CacheConfigurationImportSelector.class)
|
|
|
|
public class CacheAutoConfiguration {
|
|
|
|
public class CacheAutoConfiguration {
|
|
|
|
|
|
|
|
|
|
|
|
static final String VALIDATOR_BEAN_NAME = "cacheAutoConfigurationValidator";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
@Bean
|
|
|
|
@ConditionalOnMissingBean
|
|
|
|
@ConditionalOnMissingBean
|
|
|
|
public CacheManagerCustomizers cacheManagerCustomizers(
|
|
|
|
public CacheManagerCustomizers cacheManagerCustomizers(
|
|
|
@ -83,14 +74,10 @@ public class CacheAutoConfiguration {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
@Bean
|
|
|
|
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
|
|
|
|
public CacheManagerValidator cacheAutoConfigurationValidator(
|
|
|
|
public static CacheManagerValidatorPostProcessor cacheAutoConfigurationValidatorPostProcessor() {
|
|
|
|
CacheProperties cacheProperties,
|
|
|
|
return new CacheManagerValidatorPostProcessor();
|
|
|
|
ObjectProvider<CacheManager> cacheManager) {
|
|
|
|
}
|
|
|
|
return new CacheManagerValidator(cacheProperties, cacheManager);
|
|
|
|
|
|
|
|
|
|
|
|
@Bean(name = VALIDATOR_BEAN_NAME)
|
|
|
|
|
|
|
|
public CacheManagerValidator cacheAutoConfigurationValidator() {
|
|
|
|
|
|
|
|
return new CacheManagerValidator();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
@Configuration
|
|
|
@ -105,50 +92,25 @@ public class CacheAutoConfiguration {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* {@link BeanFactoryPostProcessor} to ensure that the {@link CacheManagerValidator}
|
|
|
|
|
|
|
|
* is triggered before {@link CacheAspectSupport} but without causing early
|
|
|
|
|
|
|
|
* instantiation.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
static class CacheManagerValidatorPostProcessor implements BeanFactoryPostProcessor {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
|
|
|
|
|
|
|
|
throws BeansException {
|
|
|
|
|
|
|
|
for (String name : beanFactory.getBeanNamesForType(CacheAspectSupport.class,
|
|
|
|
|
|
|
|
false, false)) {
|
|
|
|
|
|
|
|
BeanDefinition definition = beanFactory.getBeanDefinition(name);
|
|
|
|
|
|
|
|
definition.setDependsOn(
|
|
|
|
|
|
|
|
append(definition.getDependsOn(), VALIDATOR_BEAN_NAME));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String[] append(String[] array, String value) {
|
|
|
|
|
|
|
|
String[] result = new String[array != null ? array.length + 1 : 1];
|
|
|
|
|
|
|
|
if (array != null) {
|
|
|
|
|
|
|
|
System.arraycopy(array, 0, result, 0, array.length);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
result[result.length - 1] = value;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Bean used to validate that a CacheManager exists and provide a more meaningful
|
|
|
|
* Bean used to validate that a CacheManager exists and provide a more meaningful
|
|
|
|
* exception.
|
|
|
|
* exception.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
static class CacheManagerValidator {
|
|
|
|
static class CacheManagerValidator implements InitializingBean {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final CacheProperties cacheProperties;
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
private final ObjectProvider<CacheManager> cacheManager;
|
|
|
|
private CacheProperties cacheProperties;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired(required = false)
|
|
|
|
CacheManagerValidator(CacheProperties cacheProperties,
|
|
|
|
private CacheManager cacheManager;
|
|
|
|
ObjectProvider<CacheManager> cacheManager) {
|
|
|
|
|
|
|
|
this.cacheProperties = cacheProperties;
|
|
|
|
|
|
|
|
this.cacheManager = cacheManager;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@PostConstruct
|
|
|
|
@Override
|
|
|
|
public void checkHasCacheManager() {
|
|
|
|
public void afterPropertiesSet() {
|
|
|
|
Assert.notNull(this.cacheManager,
|
|
|
|
Assert.notNull(this.cacheManager.getIfAvailable(),
|
|
|
|
() -> "No cache manager could "
|
|
|
|
() -> "No cache manager could "
|
|
|
|
+ "be auto-configured, check your configuration (caching "
|
|
|
|
+ "be auto-configured, check your configuration (caching "
|
|
|
|
+ "type is '" + this.cacheProperties.getType() + "')");
|
|
|
|
+ "type is '" + this.cacheProperties.getType() + "')");
|
|
|
|