Merge branch '2.7.x'

This commit is contained in:
Stephane Nicoll 2021-12-15 16:41:27 +01:00
commit 035adf4f05
1 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ import org.springframework.boot.test.context.assertj.AssertableApplicationContex
import org.springframework.boot.testsupport.classpath.ClassPathExclusions;
import org.springframework.cache.Cache;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.CachingConfigurerSupport;
import org.springframework.cache.annotation.CachingConfigurer;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.caffeine.CaffeineCache;
import org.springframework.cache.caffeine.CaffeineCacheManager;
@ -707,7 +707,7 @@ class CacheAutoConfigurationTests extends AbstractCacheAutoConfigurationTests {
@Configuration(proxyBeanMethods = false)
@EnableCaching
static class CustomCacheManagerFromSupportConfiguration extends CachingConfigurerSupport {
static class CustomCacheManagerFromSupportConfiguration implements CachingConfigurer {
@Override
@Bean
@ -720,7 +720,7 @@ class CacheAutoConfigurationTests extends AbstractCacheAutoConfigurationTests {
@Configuration(proxyBeanMethods = false)
@EnableCaching
static class CustomCacheResolverFromSupportConfiguration extends CachingConfigurerSupport {
static class CustomCacheResolverFromSupportConfiguration implements CachingConfigurer {
@Override
@Bean