大数据常用工具类——redisUtil

redis工具类

一、所需pom依赖

    <dependency>
      <groupId>redis.clients</groupId>
      <artifactId>jedis</artifactId>
      <version>3.7.0</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.8.0-beta0</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <version>1.8.0-beta0</version>
    </dependency>

二、redis.properties

#redis服务器ip
redis_host=192.168.xxx.xxx

#redis服务端口
redis_port=6379

#redis验证密码(如果有)
redis_password=xxxx

#redis操作超时
redis_timeout=10000

#redis所选库
redis_db=1

#redis最大等待连接中的数量
redis_maxidle=10

#redis最小等待连接中的数量
redis_minidle=2

#redis最大数据库连接数
redis_maxtotal=20

三、redisUtil.java

import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;

import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.Properties;

public class redisUtil{
	//如果配置文件里有,则使用配置文件中的,若无,则使用这里的
    private static JedisPool pool = null;
    private static String ip = "localhost";
    private static int port = 6379;
    private static String auth = "";

    //配置文件地址
    private static File getPath() {
        return new File("src/main/resources/redis.properties");
    }
	
    //初始化连接池
    private static JedisPoolConfig initConfig() {
        JedisPoolConfig config = new JedisPoolConfig();
        Properties p = new Properties();
        try {

            File path = getPath();
            if (!path.exists()) {
                System.err.println("configuration file not found Exception : redis.properties");
                return config;
            }
			//读取配置文件
            p.load(new FileReader(path));

			//设置连接池,配置文件设置为默认值
            ip = p.getProperty("jedis.datasource.ip", ip);
            port = Integer.parseInt(p.getProperty("jedis.datasource.port", String.valueOf(port)));
            auth = p.getProperty("jedis.datasource.auth", auth);

            if (p.containsKey("jedis.pool.maxActive")) {
                config.setMaxTotal(Integer.parseInt(p.getProperty("jedis.pool.maxActive")));
            }

            if (p.containsKey("jedis.pool.maxIdle")) {
                config.setMaxIdle(Integer.parseInt(p.getProperty("jedis.pool.maxIdle")));
            }

            if (p.containsKey("jedis.pool.maxWait")) {
                config.setMaxWaitMillis(Integer.parseInt(p.getProperty("jedis.pool.maxWait")));
            }

            if (p.containsKey("jedis.pool.testOnBorrow")) {
                config.setTestOnBorrow(Boolean.parseBoolean(p.getProperty("jedis.pool.testOnBorrow")));
            }

            if (p.containsKey("jedis.pool.testOnReturn")) {
                config.setTestOnReturn(Boolean.parseBoolean(p.getProperty("jedis.pool.testOnReturn")));
            }

        } catch (IOException e) {
            e.printStackTrace();
        }
        return config;
    }

    private static synchronized void initPool() {
        if (null == pool) {
            JedisPoolConfig config = initConfig();
            pool = new JedisPool(config, ip, port, 5000, auth);
        }
    }

    public static Jedis getResource() {
        if (null == pool) {
            initPool();
        }
        return pool.getResource();
    }

    public static void returnResource(Jedis resource) {
        if (null != pool) {
            pool.returnResource(resource);
        } else {
            resource.close();
        }
    }
	
    //关闭连接,一般不关闭
    public static void close() {
        if (null != pool) {
            pool.close();

        }
    }

}

四、测试工具类

RedisTest.java

public class RedisTest {
    public static void main(String[] args) {
        Jedis jedis = RedisUitl.getResource();

        jedis.set("name1","zwh");
        System.out.println(jedis.get("name1"));
        //System.out.println(jedis.ttl("name1"));

        Kedis.returnResource(jedis);
        
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值