package com.qianwen.core.redis.config; import java.util.List; import org.springframework.beans.factory.ObjectProvider; import org.springframework.boot.autoconfigure.cache.CacheManagerCustomizer; import org.springframework.boot.autoconfigure.cache.CacheManagerCustomizers; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @ConditionalOnMissingBean({CacheManagerCustomizers.class}) @Configuration(proxyBeanMethods = false) /* loaded from: blade-starter-redis-9.3.0.0-SNAPSHOT.jar:org/springblade/core/redis/config/RedisCacheManagerConfig.class */ public class RedisCacheManagerConfig { @Bean public CacheManagerCustomizers cacheManagerCustomizers(ObjectProvider>> customizers) { return new CacheManagerCustomizers((List) customizers.getIfAvailable()); } }