Spring-Boot之Jedis-Client插件使用

1,配置maven插件抵屿,在pom.xml文件中引用Jedis-Client插件,
 <dependency>
       <groupId>redis.clients</groupId>
       <artifactId>jedis</artifactId>
       <version>2.9.0</version>
</dependency>

2,配置xml文件


Jedis配置文件圖.png
以applicationContext.xml命名為例路捧,在applicationContext.xml中配置如下代碼:
    <bean id="jedisPollConfig" class="redis.clients.jedis.JedisPoolConfig">
        <!-- 最大空閑連接數(shù)-->
        <property name="maxIdle" value="1"/>
        <!-- 最大連接數(shù)-->
        <property name="maxTotal" value="5"/>
        <!-- 連接耗盡時最大阻塞, false 報異常,true 阻塞直到超時,默認為true-->
        <property name="blockWhenExhausted" value="true"/>
        <!--獲取連接時最大等待毫秒數(shù)-->
        <property name="maxWaitMillis" value="30000" />
        <!--在獲取連接的時候檢查有效性-->
        <property name="testOnBorrow" value="true" />
    </bean>
    <bean id="jedisPool" class="redis.clients.jedis.JedisPool" destroy-method="close">
        <constructor-arg name="poolConfig" ref="jedisPollConfig"/>
        <constructor-arg name="host" value="127.0.0.1"></constructor-arg>
        <constructor-arg name="port" value="6379"></constructor-arg>
        <constructor-arg name="timeout" value="30000" />
        <!-- 設定密碼時打開-->
        <!--<constructor-arg name="password" value="" />-->
    </bean>

3持际,相關代碼如下:
注意這里加載的xml文件是applicationContext.xml

public class jedistest {
    @Test
    public void test() {
        ClassPathXmlApplicationContext context 
= new ClassPathXmlApplicationContext("applicationContext.xml");
        JedisPool jedisPool = context.getBean(JedisPool.class);
        Jedis jedis = jedisPool.getResource();
//        jedis.auth("");
        System.out.println(jedis.get("username"));
        jedis.close();
    }

4,也可以在代碼中直接用Jedis或者JedisPool連接Redis數(shù)據(jù)庫

public class jedistest {
    public static void main(String[] args) {
//        Jedis j = new Jedis("127.0.0.1", 6379);
////        j.auth("");//在D:\software\Redis-x64-3.2.100\redis.windows.conf的第443行修改requirepass foobared哗咆,打開注釋foobared即為密碼
//        j.select(0);//默認就是0號庫
//        j.set("username", "張三");
//        System.out.println(j.get("username"));
//        j.close();
        JedisPool jedisPool = new JedisPool("127.0.0.1", 6379);
        Jedis jedisResource = jedisPool.getResource();
        //jedisResource.auth("");//在D:\software\Redis-x64-3.2.100\redis.windows.conf的第443行修改requirepass foobared蜘欲,打開注釋foobared即為密碼
        jedisResource.select(0);//默認就是0號庫
        jedisResource.set("username", "張三");
        System.out.println(jedisResource.get("username"));
        jedisResource.close();
        //JedisPool放在配置文件中,整合對象晌柬,Spring整合Jedis, 放在spring-redis.xml文件中
//        <beans><beans>
    }
}

5,Jedis也可以使用Spring-Boot注解來連接Jedis
a,引入maven倉庫包如下:

        <!--redis客戶端(連接及連接池) 或者2.7.3版本-->
        <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
            <version>2.9.0</version>
        </dependency>
        <!-- redis基于注解的導入-->
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-redis</artifactId>
            <version>1.6.0.RELEASE</version>
        </dependency>

b,applicationContext.xml配置如下:

    <!--開啟基于redis注解的緩存支持標簽-->
    <cache:annotation-driven></cache:annotation-driven>
    <bean id="jedisPollConfig" class="redis.clients.jedis.JedisPoolConfig">
        <!-- 最大空閑連接數(shù)-->
        <property name="maxIdle" value="1"/>
        <!-- 最大連接數(shù)-->
        <property name="maxTotal" value="5"/>
        <!-- 連接耗盡時最大阻塞, false 報異常姥份,true 阻塞直到超時,默認為true-->
        <property name="blockWhenExhausted" value="true"/>
        <!--獲取連接時最大等待毫秒數(shù)-->
        <property name="maxWaitMillis" value="30000" />
        <!--在獲取連接的時候檢查有效性-->
        <property name="testOnBorrow" value="true" />
    </bean>
    <!--<bean id="jedisPool" class="redis.clients.jedis.JedisPool" destroy-method="close">
        <constructor-arg name="poolConfig" ref="jedisPollConfig"/>
        <constructor-arg name="host" value="127.0.0.1"></constructor-arg>
        <constructor-arg name="port" value="6379"></constructor-arg>
        <constructor-arg name="timeout" value="30000" />
        <!-- 設定密碼時打開-->
        <!--<constructor-arg name="password" value="" />-->
    <!--</bean>-->
    <!--配置JedisConnectionFactory 用來代替JedisPool-->
    <bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
        <property name="hostName" value="127.0.0.1"/>
        <property name="port" value="6379"/>
        <!--<property name="password" value=""/>-->
        <property name="database" value="0"/><!--0~15-->
        <property name="poolConfig" ref="jedisPollConfig"/>
    </bean>
    <!--配置RedisTemplate-->
    <bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
        <property name="connectionFactory" ref="jedisConnectionFactory"/>
        <property name="keySerializer">
            <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"></bean>
        </property>
        <property name="valueSerializer">
            <bean class="org.springframework.data.redis.serializer.JdkSerializationRedisSerializer"/>
        </property>
    </bean>
    <!---->
    <bean id="cacheManager" class="org.springframework.data.redis.cache.RedisCacheManager">
        <constructor-arg index="0" ref="redisTemplate" />
        <property name="defaultExpiration" value="3000"/>
    </bean>

同時配置bean.xml

<import resource="applicationContext.xml"/>

如圖所示:


Jedis的注解配置.png
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末年碘,一起剝皮案震驚了整個濱河市澈歉,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌屿衅,老刑警劉巖埃难,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異傲诵,居然都是意外死亡凯砍,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門拴竹,熙熙樓的掌柜王于貴愁眉苦臉地迎上來悟衩,“玉大人,你說我怎么就攤上這事栓拜∽荆” “怎么了惠昔?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長挑势。 經常有香客問我镇防,道長,這世上最難降的妖魔是什么潮饱? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任来氧,我火速辦了婚禮,結果婚禮上香拉,老公的妹妹穿的比我還像新娘啦扬。我一直安慰自己,他們只是感情好凫碌,可當我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布扑毡。 她就那樣靜靜地躺著,像睡著了一般盛险。 火紅的嫁衣襯著肌膚如雪瞄摊。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天苦掘,我揣著相機與錄音换帜,去河邊找鬼。 笑死鸟蜡,一個胖子當著我的面吹牛膜赃,可吹牛的內容都是我干的。 我是一名探鬼主播揉忘,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼跳座,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了泣矛?” 一聲冷哼從身側響起疲眷,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎您朽,沒想到半個月后狂丝,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡哗总,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年几颜,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片讯屈。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡蛋哭,死狀恐怖,靈堂內的尸體忽然破棺而出涮母,到底是詐尸還是另有隱情谆趾,我是刑警寧澤躁愿,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站沪蓬,受9級特大地震影響彤钟,放射性物質發(fā)生泄漏。R本人自食惡果不足惜跷叉,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一逸雹、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧云挟,春花似錦峡眶、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽峭拘。三九已至俊庇,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間鸡挠,已是汗流浹背辉饱。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留拣展,地道東北人彭沼。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像备埃,于是被迫代替她去往敵國和親姓惑。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內容