首先來簡單介紹一下jedis,其實一句話就能夠歸納的,就是java操做redis的一種api。咱們知道redis提供了基本上全部經常使用編程語言的clients,你們能夠到http://redis.io/clients 上面去查看,包含C,C++,C#等等。java
一、download jedis的源碼:https://github.com/xetorthio/jedis/releases/tag/jedis-2.1.0 ,jedis採用的是git託管的,這邊使用的是2.1.0版本;git
二、解壓打開能夠看到,jedis採用的是maven構建工程的,因此咱們的開發工具最好能支持maven工程,關於maven工程的支持,這邊就不介紹了,你們能夠去網上查找,或者查看本人寫的關於maven的博文,之因此要選擇maven工程呢,是爲了更好的去查看jedis的源碼。github
三、eclipse導入jedis工程,在Package Exploer右鍵Import,選擇maven工程redis
點擊Finish便可完成導入工做,工程結構以下:編程
四、完成基本鏈接操做api
修改pom.xml文件,將此處的localhost修改成本身的redis server IP eclipse
<properties> <redis-hosts>192.168.2.105:6379,192.168.2.105:6380</redis-hosts> </properties>
建立RedisClient類:(本人習慣將經常使用的進行封裝)maven
package com.enson.redis.client;
import com.enson.redis.common.Constant; import redis.clients.jedis.Jedis; public class RedisClient { public static Jedis jedis = null; public static Jedis getClient(){ if(jedis == null){ jedis = new Jedis(Constant.HOST, Constant.PORT); } return jedis; } }
Constant類:編程語言
package com.enson.redis.common;
public class Constant { //redis主機IP地址 public static final String HOST = "192.168.2.105"; //redis主機端口 public static final Integer PORT = 6379; }
在src/test/java 下面新建一個JUnit Test Case:RedisTest工具
package test.enson.redis;
import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import com.enson.redis.client.RedisClient; public class RedisTest { @BeforeClass public static void setUpBeforeClass() throws Exception { } @AfterClass public static void tearDownAfterClass() throws Exception { } @Test public void test() { System.out.println(RedisClient.getClient().set("key","123456")); System.out.println(RedisClient.getClient().get("key")); } }
此時此刻,測試代碼已經寫好了, 開啓redis-server
junit方式運行test方法: