@ -21,7 +21,7 @@ import org.junit.jupiter.api.Disabled;
@@ -21,7 +21,7 @@ import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test ;
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.interceptor.CacheErrorHandler ;
import org.springframework.cache.interceptor.CacheResolver ;
@ -143,7 +143,7 @@ public class AspectJEnableCachingIsolatedTests {
@@ -143,7 +143,7 @@ public class AspectJEnableCachingIsolatedTests {
@Configuration
@EnableCaching ( mode = AdviceMode . ASPECTJ )
static class EnableCachingConfig extends CachingConfigurerSupport {
static class EnableCachingConfig implements CachingConfigurer {
@Override
@Bean
@ -220,7 +220,7 @@ public class AspectJEnableCachingIsolatedTests {
@@ -220,7 +220,7 @@ public class AspectJEnableCachingIsolatedTests {
@Configuration
@EnableCaching ( mode = AdviceMode . ASPECTJ )
static class MultiCacheManagerConfigurer extends CachingConfigurerSupport {
static class MultiCacheManagerConfigurer implements CachingConfigurer {
@Bean
public CacheManager cm1 ( ) {
@ -246,7 +246,7 @@ public class AspectJEnableCachingIsolatedTests {
@@ -246,7 +246,7 @@ public class AspectJEnableCachingIsolatedTests {
@Configuration
@EnableCaching ( mode = AdviceMode . ASPECTJ )
static class EmptyConfigSupportConfig extends CachingConfigurerSupport {
static class EmptyConfigSupportConfig implements CachingConfigurer {
@Bean
public CacheManager cm ( ) {
@ -258,7 +258,7 @@ public class AspectJEnableCachingIsolatedTests {
@@ -258,7 +258,7 @@ public class AspectJEnableCachingIsolatedTests {
@Configuration
@EnableCaching ( mode = AdviceMode . ASPECTJ )
static class FullCachingConfig extends CachingConfigurerSupport {
static class FullCachingConfig implements CachingConfigurer {
@Override
@Bean