提交 7f0fdec3 编写于 作者: doc_wei's avatar doc_wei

redis配置修改

上级 515eb773
/**
* Copyright 卫志强 QQ:598748873@qq.com Inc. All rights reserved.
*/
package com.skyeye.jedis;
import java.util.List;
......@@ -8,7 +9,16 @@ import java.util.Map;
import redis.clients.util.Slowlog;
/**
*
* @ClassName: JedisClientService
* @Description: jedis服务接口层
* @author: skyeye云系列--卫志强
* @date: 2021/6/26 9:52
*
* @Copyright: 2021 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved.
* 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的
*/
public interface JedisClientService {
/**
......
/**
* Copyright 卫志强 QQ:598748873@qq.com Inc. All rights reserved.
*/
package com.skyeye.jedis.impl;
import java.util.ArrayList;
......@@ -24,12 +25,14 @@ import redis.clients.jedis.JedisPool;
import redis.clients.util.Slowlog;
/**
*
* @ClassName: JedisClientCluster
* @Description: redis集群
* @author 卫志强
* @date 2018年11月17日
*
*
* @ClassName: JedisClientServiceImpl
* @Description: redis集群服务类
* @author: skyeye云系列--卫志强
* @date: 2021/6/26 9:52
*
* @Copyright: 2021 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved.
* 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的
*/
@Service
public class JedisClientServiceImpl implements JedisClientService {
......
/**
* Copyright 卫志强 QQ:598748873@qq.com Inc. All rights reserved.
*/
package com.skyeye.jedis.util;
import java.util.HashSet;
......@@ -13,6 +14,16 @@ import org.springframework.context.annotation.Configuration;
import redis.clients.jedis.HostAndPort;
import redis.clients.jedis.JedisCluster;
/**
*
* @ClassName: JedisClusterConfig
* @Description: jedis服务启动配置类
* @author: skyeye云系列--卫志强
* @date: 2021/6/26 9:53
*
* @Copyright: 2021 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved.
* 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的
*/
@Configuration
public class JedisClusterConfig {
......
/**
* Copyright 卫志强 QQ:598748873@qq.com Inc. All rights reserved.
*/
package com.skyeye.jedis.util;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
/**
* 读取redis配置信息并装载
*
* @author 卫志强
*
* @ClassName: RedisProperties
* @Description: 读取redis配置信息并装载
* @author: skyeye云系列--卫志强
* @date: 2021/6/26 9:53
*
* @Copyright: 2021 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved.
* 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的
*/
@Component
@ConfigurationProperties(prefix = "redis")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册