update 优化 去除无用继承

This commit is contained in:
疯狂的狮子Li 2022-12-15 14:53:33 +08:00
parent d2b1177580
commit 7f00861e68

View File

@ -11,7 +11,6 @@ import org.redisson.spring.starter.RedissonAutoConfigurationCustomizer;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.cache.CacheManager; import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.CachingConfigurerSupport;
import org.springframework.cache.annotation.EnableCaching; import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;
@ -25,7 +24,7 @@ import org.springframework.context.annotation.Configuration;
@Configuration @Configuration
@EnableCaching @EnableCaching
@EnableConfigurationProperties(RedissonProperties.class) @EnableConfigurationProperties(RedissonProperties.class)
public class RedisConfig extends CachingConfigurerSupport { public class RedisConfig {
@Autowired @Autowired
private RedissonProperties redissonProperties; private RedissonProperties redissonProperties;
@ -76,7 +75,6 @@ public class RedisConfig extends CachingConfigurerSupport {
/** /**
* 自定义缓存管理器 整合spring-cache * 自定义缓存管理器 整合spring-cache
*/ */
@Override
@Bean @Bean
public CacheManager cacheManager() { public CacheManager cacheManager() {
return new PlusSpringCacheManager(); return new PlusSpringCacheManager();