fix #I54TZ9

This commit is contained in:
Looly
2022-04-27 23:26:11 +08:00
parent 3329d60fff
commit d874b4282d
5 changed files with 91 additions and 20 deletions

View File

@@ -94,6 +94,12 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>${dbcp2.version}</version>
<exclusions>
<exclusion>
<artifactId>commons-pool2</artifactId>
<groupId>org.apache.commons</groupId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
<dependency>
@@ -108,10 +114,6 @@
<artifactId>jedis</artifactId>
<version>${jedis.version}</version>
<exclusions>
<exclusion>
<artifactId>commons-pool2</artifactId>
<groupId>org.apache.commons</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
@@ -174,6 +176,12 @@
<artifactId>clickhouse-jdbc</artifactId>
<version>0.3.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>gson</artifactId>
<groupId>com.google.code.gson</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>

View File

@@ -13,7 +13,7 @@ import java.io.Serializable;
/**
* Jedis数据源
*
*
* @author looly
* @since 3.2.3
*/
@@ -30,7 +30,7 @@ public class RedisDS implements Closeable, Serializable {
// --------------------------------------------------------------------------------- Static method start
/**
* 创建RedisDS使用默认配置文件默认分组
*
*
* @return RedisDS
*/
public static RedisDS create() {
@@ -39,7 +39,7 @@ public class RedisDS implements Closeable, Serializable {
/**
* 创建RedisDS使用默认配置文件
*
*
* @param group 配置文件中配置分组
* @return RedisDS
*/
@@ -49,7 +49,7 @@ public class RedisDS implements Closeable, Serializable {
/**
* 创建RedisDS
*
*
* @param setting 配置文件
* @param group 配置文件中配置分组
* @return RedisDS
@@ -68,7 +68,7 @@ public class RedisDS implements Closeable, Serializable {
/**
* 构造,使用默认配置文件
*
*
* @param group 配置文件中配置分组
*/
public RedisDS(String group) {
@@ -77,7 +77,7 @@ public class RedisDS implements Closeable, Serializable {
/**
* 构造
*
*
* @param setting 配置文件
* @param group 配置文件中配置分组
*/
@@ -88,7 +88,7 @@ public class RedisDS implements Closeable, Serializable {
/**
* 初始化Jedis客户端
*
*
* @param group Redis服务器信息分组
* @return this
*/
@@ -105,6 +105,13 @@ public class RedisDS implements Closeable, Serializable {
setting.toBean(group, config);
}
//issue#I54TZ9
final Long maxWaitMillis = setting.getLong("maxWaitMillis");
if(null != maxWaitMillis){
//noinspection deprecation
config.setMaxWaitMillis(maxWaitMillis);
}
this.pool = new JedisPool(config,
// 地址
setting.getStr("host", group, Protocol.DEFAULT_HOST),
@@ -130,7 +137,7 @@ public class RedisDS implements Closeable, Serializable {
/**
* 从资源池中获取{@link Jedis}
*
*
* @return {@link Jedis}
*/
public Jedis getJedis() {
@@ -139,7 +146,7 @@ public class RedisDS implements Closeable, Serializable {
/**
* 从Redis中获取值
*
*
* @param key 键
* @return 值
*/
@@ -151,7 +158,7 @@ public class RedisDS implements Closeable, Serializable {
/**
* 从Redis中获取值
*
*
* @param key 键
* @param value 值
* @return 状态码
@@ -161,10 +168,10 @@ public class RedisDS implements Closeable, Serializable {
return jedis.set(key, value);
}
}
/**
* 从Redis中删除多个值
*
*
* @param keys 需要删除值对应的键列表
* @return 删除个数0表示无key可删除
*/