jedis连接工具类的创建代码 1214
2023-03-29 09:40:26 阅读次数:93
package tools;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class JedisPoolUtils {
// 连接池
private static JedisPool jedisPool;
static {
// 字节输出流
InputStream resourceAsStream = JedisPoolUtils.class.getClassLoader().getResourceAsStream("tools/jedisConfig.properties");
// 配置集合
Properties properties = new Properties();
try {
// 集合加载流数据
properties.load(resourceAsStream);
} catch (IOException e) {
e.printStackTrace();
}
// 连接池配置
JedisPoolConfig jedisPoolConfig = new JedisPoolConfig();
String maxTotal = properties.getProperty("maxTotal");
int intTotal = Integer.parseInt(maxTotal);
jedisPoolConfig.setMaxTotal(intTotal);
String maxIdle = properties.getProperty("maxIdle");
int intIdle = Integer.parseInt(maxIdle);
jedisPoolConfig.setMaxIdle(intIdle);
// 连接池创建
jedisPool = new JedisPool(
jedisPoolConfig,
properties.getProperty("host"),
Integer.parseInt(properties.getProperty("port"))
);
}
public static Jedis getJedis() {
// 返回一个连接
return jedisPool.getResource();
}
}
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_13137233/5935324,作者:ifubing,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:Go 语言入门很简单 -- 5. 控制结构 #私藏项目实操分享#
下一篇:try...catch...finally java