简单、原生的jedis环境搭建

时间:2021-09-05 17:27:33

win7 64位环境,eclipse,jdk8.x

去https://github.com/MSOpenTech/redis/releases下载zip包,解压后运行redis-server.exe

看到redis的终端图案后,代表redis服务已经启动。

(顺便提一句,redis自带终端redis-cli.exe)

打开eclipse后,新建一个mavenproject

然后在pom.xml文件dependencies中加入如下配置:

<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>

其代表所使用的jedis的jar包。正确引入后,会多出jedis-2.9.0.jar和commons-pool2-2.4.2.jar。

然后新建Mainin.java文件,写入以下内容测试环境是否搭建成功。

public class Mainin {
protected JedisPool jedisPool;

public static void main(String[] args) {
Mainin m = new Mainin();
try {
m.jedisPool = new JedisPool(new JedisPoolConfig(), "127.0.0.1", 6379, 10000);
Jedis rr = m.jedisPool.getResource();
rr.set("my", "your jedis had already workking");
} catch (Exception e) {
e.printStackTrace();
} finally {
m.jedisPool.close();
}
}

}