SpingBoot之集成Redis集群

一萤厅、安裝Redis集群

安裝步驟參照網(wǎng)上教程,Mac安裝步驟參照https://github.com/muyl/mac-docker-redis-cluster

二藐石、創(chuàng)建SpringBoot工程
file
  1. 創(chuàng)建Redis配置類

    package com.example.chapterredis.common.config;
    
    import org.apache.commons.pool2.impl.GenericObjectPoolConfig;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import redis.clients.jedis.HostAndPort;
    import redis.clients.jedis.JedisCluster;
    
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * @author tony
     */
    @Configuration
    public class RedisConfiguration {
    
        private static final Logger logger = LoggerFactory.getLogger(RedisConfiguration.class);
    
        @Value("${spring.redis.clusterNodes}")
        private String  clusterNodes;
        @Value("${spring.redis.password}")
        private String  auth;
        @Value("${spring.redis.pool.maxActive}")
        private Integer maxTotal;
        @Value("${spring.redis.pool.minIdle}")
        private Integer minIdle;
        @Value("${spring.redis.pool.maxIdle}")
        private Integer maxIdle;
        @Value("${spring.redis.pool.maxWait}")
        private Long    maxWaitMillis;
        @Value("${spring.redis.pool.commandTimeout}")
        private int     commandTimeout;
    
    
        @Bean
        public JedisCluster jedisCluster() {
            String[] serverArray = clusterNodes.split(",");
            Set<HostAndPort> nodes = new HashSet<>();
            for (String ipPort : serverArray) {
                String[] ipPortPair = ipPort.split(":");
                nodes.add(new HostAndPort(ipPortPair[0].trim(), Integer.valueOf(ipPortPair[1].trim())));
            }
    
            if (!nodes.isEmpty()) {
                String password = getAuth(auth);
                logger.info("redis password:{}", password);
                GenericObjectPoolConfig pool = new GenericObjectPoolConfig();
                pool.setMaxTotal(maxTotal);
                pool.setMinIdle(minIdle);
                pool.setMaxIdle(maxIdle);
                pool.setMaxWaitMillis(maxWaitMillis);
                return new JedisCluster(nodes, commandTimeout, commandTimeout, 5, password, pool);
            }
            return null;
        }
    
        private String getAuth(String auth) {
            return "".equals(auth) ? null : auth;
        }
    }
    
    
  2. SpringBoot屬性文件

    spring.redis.clusterNodes=localhost:7000,localhost:7001,localhost:7002,localhost:7003,localhost:7004,localhost:7005
    spring.redis.password=
    spring.redis.pool.maxActive=5
    spring.redis.pool.minIdle=5
    spring.redis.pool.maxIdle=1
    spring.redis.pool.maxWait=3000
    spring.redis.pool.commandTimeout=5000
    
  3. SpringBoot啟動類

    package com.example.chapterredis;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    public class ChapterRedisApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(ChapterRedisApplication.class, args);
        }
    }
    
    
  4. 測試類

    package com.example.chapterredis;
    
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.boot.test.context.SpringBootTest;
    import org.springframework.test.context.junit4.SpringRunner;
    import redis.clients.jedis.JedisCluster;
    
    @RunWith(SpringRunner.class)
    @SpringBootTest(classes={ChapterRedisApplication.class})
    public class ChapterRedisApplicationTests {
    
        @Autowired
        private JedisCluster jedisCluster;
    
    
        @Test
        public void test2() {
            jedisCluster.set("aaa","123");
            System.out.println(jedisCluster.get("aaa"));
        }
    
    }
    
    
三苇羡、工程源代碼

https://gitee.com/shanksV/chapter-redis.git

比你優(yōu)秀的人比你還努力形导,你有什么資格不去奮斗!!!

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末百匆,一起剝皮案震驚了整個濱河市砌些,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌加匈,老刑警劉巖存璃,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異雕拼,居然都是意外死亡纵东,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進(jìn)店門悲没,熙熙樓的掌柜王于貴愁眉苦臉地迎上來篮迎,“玉大人,你說我怎么就攤上這事示姿√鸪鳎” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵栈戳,是天一觀的道長岂傲。 經(jīng)常有香客問我,道長子檀,這世上最難降的妖魔是什么镊掖? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮褂痰,結(jié)果婚禮上亩进,老公的妹妹穿的比我還像新娘。我一直安慰自己缩歪,他們只是感情好归薛,可當(dāng)我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著匪蝙,像睡著了一般主籍。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上逛球,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天千元,我揣著相機(jī)與錄音,去河邊找鬼颤绕。 笑死幸海,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的奥务。 我是一名探鬼主播涕烧,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼汗洒!你這毒婦竟也來了议纯?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤溢谤,失蹤者是張志新(化名)和其女友劉穎瞻凤,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體世杀,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡阀参,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了瞻坝。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蛛壳。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出衙荐,到底是詐尸還是另有隱情捞挥,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布忧吟,位于F島的核電站砌函,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏溜族。R本人自食惡果不足惜讹俊,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望煌抒。 院中可真熱鬧仍劈,春花似錦、人聲如沸寡壮。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽诬像。三九已至屋群,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間坏挠,已是汗流浹背芍躏。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留降狠,地道東北人对竣。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像榜配,于是被迫代替她去往敵國和親否纬。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容