Commit a356a852 by QIANGLU

update name

parent a3f37a4a
package com.secoo.mall.redis.config;
import com.secoo.mall.redis.utils.RedefineClusterUtils;
import com.secoo.mall.redis.utils.MatrixClusterUtils;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
......@@ -28,9 +28,9 @@ public class MatrixeRedisAutoConfiguration {
}
@Bean
@ConditionalOnMissingBean(RedefineClusterUtils.class)
public RedefineClusterUtils jedisClusterUtils() {
return new RedefineClusterUtils();
@ConditionalOnMissingBean(MatrixClusterUtils.class)
public MatrixClusterUtils jedisClusterUtils() {
return new MatrixClusterUtils();
}
......
......@@ -15,9 +15,9 @@ import java.util.concurrent.TimeUnit;
/**
* @author QIANG
*/
public class RedefineClusterUtils {
public class MatrixClusterUtils {
private static RedefineClusterUtils cacheUtils;
private static MatrixClusterUtils cacheUtils;
@Resource
private RedisTemplate<String, String> redisTemplate;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment