Remove references to JCacheConfigurerSupport and CachingConfigurerSupport

See gh-27863
This commit is contained in:
izeye
2021-12-29 05:12:57 +09:00
committed by Stephane Nicoll
parent 7ba089be95
commit f0125afb5e
5 changed files with 13 additions and 13 deletions

View File

@@ -50,7 +50,7 @@ public interface CachingConfigurer {
* <pre class="code">
* &#064;Configuration
* &#064;EnableCaching
* public class AppConfig extends CachingConfigurerSupport {
* public class AppConfig implements CachingConfigurer {
* &#064;Bean // important!
* &#064;Override
* public CacheManager cacheManager() {
@@ -77,7 +77,7 @@ public interface CachingConfigurer {
* <pre class="code">
* &#064;Configuration
* &#064;EnableCaching
* public class AppConfig extends CachingConfigurerSupport {
* public class AppConfig implements CachingConfigurer {
* &#064;Bean // important!
* &#064;Override
* public CacheResolver cacheResolver() {
@@ -100,7 +100,7 @@ public interface CachingConfigurer {
* <pre class="code">
* &#064;Configuration
* &#064;EnableCaching
* public class AppConfig extends CachingConfigurerSupport {
* public class AppConfig implements CachingConfigurer {
* &#064;Bean // important!
* &#064;Override
* public KeyGenerator keyGenerator() {
@@ -125,7 +125,7 @@ public interface CachingConfigurer {
* <pre class="code">
* &#064;Configuration
* &#064;EnableCaching
* public class AppConfig extends CachingConfigurerSupport {
* public class AppConfig implements CachingConfigurer {
* &#064;Bean // important!
* &#064;Override
* public CacheErrorHandler errorHandler() {

View File

@@ -103,7 +103,7 @@ import org.springframework.core.Ordered;
* <pre class="code">
* &#064;Configuration
* &#064;EnableCaching
* public class AppConfig extends CachingConfigurerSupport {
* public class AppConfig implements CachingConfigurer {
*
* &#064;Bean
* public MyService myService() {