栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

SpringBoot 集成 Redis 集群

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

SpringBoot 集成 Redis 集群

搭建Redis集群可参考这篇文章:Docker 搭建redis集群-三台机机器、三主三从 首先要确保redis集群正常使用,才能往下走,不然在启动的时候初始化redis连接池,会报异常。

查看redis集群状态是否正常,可以连接上redis后,使用 cluster info 查看:

可以看到:
cluster_state 集群状态是 ok ,如果为 fail 则表示集群状态异常。
cluster_size 集群 Master 数量
cluster_know_nodes 集群 节点 数量

这里集成了 Redisson 便于使用其中的分布式锁,特意加入了Redisson依赖。

            
                org.springframework.boot
                spring-boot-starter-data-redis
                ${spring-boot.version}
            
            
            
            
                org.redisson
                redisson-spring-boot-starter
                3.16.2
            

            
            
                redis.clients
                jedis
                3.3.0
            
  1. 配置文件:
spring:
  # Redis配置
  redis:
    timeout: 6000 # 连接超时时长(毫秒)
    password: abc123456
    cluster:
      max-redirects: 3
      nodes:
        - 192.168.104.79:6379
        - 192.168.104.79:6380
        - 192.168.104.80:6379
        - 192.168.104.80:6380
        - 192.168.104.81:6379
        - 192.168.104.81:6380
    lettuce:
      pool:
        max-active: 1024 # 连接池最大连接数(默认为8,-1表示无限制 如果pool已经分配了超过max_active个jedis实例,则此时pool为耗尽)
        max-wait: 10000 #最大等待连接时间,单位毫秒 默认为-1,表示永不超时,超时会抛出JedisConnectionException
        max-idle: 10
        min-idle: 5
      shutdown-timeout: 100
  1. redis 配置类:RedisConfigProperties.java
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import java.util.List;


@Component
@ConfigurationProperties(prefix = "spring.redis")
public class RedisConfigProperties {
    private Integer timeout;
    private Integer database;
    private Integer port;
    private String host;
    private String password;
    private cluster cluster;

    public static class cluster {
        private List nodes;

        public List getNodes() {
            return nodes;
        }

        public void setNodes(List nodes) {
            this.nodes = nodes;
        }
    }

    public Integer getTimeout() {
        return timeout;
    }

    public void setTimeout(Integer timeout) {
        this.timeout = timeout;
    }

    public Integer getDatabase() {
        return database;
    }

    public void setDatabase(Integer database) {
        this.database = database;
    }

    public Integer getPort() {
        return port;
    }

    public void setPort(Integer port) {
        this.port = port;
    }

    public String getHost() {
        return host;
    }

    public void setHost(String host) {
        this.host = host;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public RedisConfigProperties.cluster getCluster() {
        return cluster;
    }

    public void setCluster(RedisConfigProperties.cluster cluster) {
        this.cluster = cluster;
    }
}

RedissonConfig.java

import gc.cnnvd.config.properties.RedisConfigProperties;
import org.redisson.Redisson;
import org.redisson.config.ClusterServersConfig;
import org.redisson.config.Config;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.ArrayList;
import java.util.List;


@Configuration
public class RedissonConfig {

    @Autowired
    private RedisConfigProperties redisConfigProperties;

    
    private static final String REDIS_ADDRESS = "redis://%s:%s";

    
    @Bean
    public Redisson redisson() {
        //redisson版本是3.5,集群的ip前面要加上“redis://”,不然会报错,3.2版本可不加
        List clusterNodes = new ArrayList<>();
        for (int i = 0; i < redisConfigProperties.getCluster().getNodes().size(); i++) {
            clusterNodes.add("redis://" + redisConfigProperties.getCluster().getNodes().get(i));
        }
        Config config = new Config();
        ClusterServersConfig clusterServersConfig = config.useClusterServers()
                .addNodeAddress(clusterNodes.toArray(new String[clusterNodes.size()]));
        clusterServersConfig.setPassword(redisConfigProperties.getPassword());//设置密码,如果没有密码,则注释这一行,否则启动会报错
        return (Redisson) Redisson.create(config);
    }

//    
//    @Bean
//    public Redisson RedissonConfig(){
//        Config config = new Config();
        config.useSingleServer().setAddress("redis://localhost:6379").setDatabase(redisConfigProperties.getDatabase());
//        config.useSingleServer().setAddress(String.format(REDIS_ADDRESS, redisConfigProperties.getHost(), redisConfigProperties.getPort()))
//                .setDatabase(redisConfigProperties.getDatabase())
//                .setPassword(redisConfigProperties.getPassword());
//        return (Redisson) Redisson.create(config);
//    }
}

RedisTemplateConfig.java

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;


@Configuration
public class RedisTemplateConfig {

    @Bean
    public RedisTemplate redisTemplate(RedisConnectionFactory redisConnectionFactory) {
        RedisTemplate redisTemplate = new RedisTemplate<>();
        redisTemplate.setConnectionFactory(redisConnectionFactory);

        // 自定义的string序列化器和fastjson序列化器
        StringRedisSerializer stringRedisSerializer = new StringRedisSerializer();

        // jackson 序列化器
        GenericJackson2JsonRedisSerializer jsonRedisSerializer = new GenericJackson2JsonRedisSerializer();

        // kv 序列化
        redisTemplate.setKeySerializer(stringRedisSerializer);
        redisTemplate.setValueSerializer(jsonRedisSerializer);

        // hash 序列化
        redisTemplate.setHashKeySerializer(stringRedisSerializer);
        redisTemplate.setHashValueSerializer(jsonRedisSerializer);

        redisTemplate.afterPropertiesSet();

        return redisTemplate;
    }
}

RestTemplateConfig.java

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.client.ClientHttpRequestFactory;
import org.springframework.http.client.SimpleClientHttpRequestFactory;
import org.springframework.web.client.RestTemplate;


@Configuration
public class RestTemplateConfig {

    @Bean
    public RestTemplate restTemplate(ClientHttpRequestFactory factory){
        return new RestTemplate(factory);
    }

    @Bean
    public ClientHttpRequestFactory simpleClientHttpRequestFactory(){
        SimpleClientHttpRequestFactory factory = new SimpleClientHttpRequestFactory();
        //单位为ms
        factory.setReadTimeout(5000);
        //单位为ms
        factory.setConnectTimeout(5000);
        return factory;
    }
}

在使用的地方直接注入即可:

    @Lazy
    @Autowired
    private RedisTemplate redisTemplate;

或者使用封装的工具类:RedisUtil.java

import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;

import javax.annotation.Resource;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeUnit;

@Component
public final class RedisUtil {

    @Resource
    private RedisTemplate redisTemplate;

    // =============================common============================

    
    public boolean expire(String key, long time, TimeUnit timeUnit) {
        try {
            if (time > 0) {
                redisTemplate.expire(key, time, timeUnit);
            }
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }

    
    public long getExpire(String key) {
        return redisTemplate.getExpire(key, TimeUnit.SECONDS);
    }


    
    public boolean hasKey(String key) {
        try {
            return redisTemplate.hasKey(key);
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }


    
    @SuppressWarnings("unchecked")
    public void del(String... key) {
        if (key != null && key.length > 0) {
            if (key.length == 1) {
                redisTemplate.delete(key[0]);
            } else {
                redisTemplate.delete((Collection) CollectionUtils.arrayToList(key));
            }
        }
    }


    // ============================String=============================

    
    public Object get(String key) {
        return key == null ? null : redisTemplate.opsForValue().get(key);
    }

    
    public String getString(String key) {
        Object getResult = get(key);
        if (getResult == null){
            return "";
        }
        if (getResult instanceof String){
            return (String) getResult;
        }
        return "";
    }

    

    public boolean set(String key, Object value) {
        try {
            redisTemplate.opsForValue().set(key, value);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }


    

    public boolean set(String key, Object value, long time) {
        try {
            if (time > 0) {
                redisTemplate.opsForValue().set(key, value, time, TimeUnit.SECONDS);
            } else {
                set(key, value);
            }
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }

    

    public boolean set(String key, Object value, long time, TimeUnit timeUnit) {
        try {
            if (time > 0) {
                redisTemplate.opsForValue().set(key, value, time, timeUnit);
            } else {
                set(key, value);
            }
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }

    

    public boolean setIfAbsent(String key, Object value, long time, TimeUnit timeUnit) {
        try {
            if (time > 0) {
                redisTemplate.opsForValue().setIfAbsent(key, value, time, timeUnit);
            } else {
                set(key, value);
            }
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }


    
    public long incr(String key, long delta) {
        if (delta < 0) {
            throw new RuntimeException("递增因子必须大于0");
        }
        return redisTemplate.opsForValue().increment(key, delta);
    }


    
    public long decr(String key, long delta) {
        if (delta < 0) {
            throw new RuntimeException("递减因子必须大于0");
        }
        return redisTemplate.opsForValue().increment(key, -delta);
    }


    // ================================Map=================================

    
    public Object hget(String key, String item) {
        return redisTemplate.opsForHash().get(key, item);
    }

    
    public Map hmget(String key) {
        return redisTemplate.opsForHash().entries(key);
    }

    
    public boolean hmset(String key, Map map) {
        try {
            redisTemplate.opsForHash().putAll(key, map);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }


    
    public boolean hmset(String key, Map map, long time, TimeUnit timeUnit) {
        try {
            redisTemplate.opsForHash().putAll(key, map);
            if (time > 0) {
                expire(key, time, timeUnit);
            }
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }


    
    public boolean hset(String key, String item, Object value) {
        try {
            redisTemplate.opsForHash().put(key, item, value);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }

    
    public boolean hset(String key, String item, Object value, long time, TimeUnit timeUnit) {
        try {
            redisTemplate.opsForHash().put(key, item, value);
            if (time > 0) {
                expire(key, time, timeUnit);
            }
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }


    
    public void hdel(String key, Object... item) {
        redisTemplate.opsForHash().delete(key, item);
    }


    
    public boolean hHasKey(String key, String item) {
        return redisTemplate.opsForHash().hasKey(key, item);
    }


    
    public double hincr(String key, String item, double by) {
        return redisTemplate.opsForHash().increment(key, item, by);
    }


    
    public double hdecr(String key, String item, double by) {
        return redisTemplate.opsForHash().increment(key, item, -by);
    }


    // ============================set=============================

    
    public Set sGet(String key) {
        try {
            return redisTemplate.opsForSet().members(key);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }


    
    public boolean sHasKey(String key, Object value) {
        try {
            return redisTemplate.opsForSet().isMember(key, value);
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }


    
    public long sSet(String key, Object... values) {
        try {
            return redisTemplate.opsForSet().add(key, values);
        } catch (Exception e) {
            e.printStackTrace();
            return 0;
        }
    }


    
    public long sSetAndTime(String key, long time, TimeUnit timeUnit, Object... values) {
        try {
            Long count = redisTemplate.opsForSet().add(key, values);
            if (time > 0) {
                expire(key, time, timeUnit);
            }
            return count;
        } catch (Exception e) {
            e.printStackTrace();
            return 0;
        }
    }


    
    public long sGetSetSize(String key) {
        try {
            return redisTemplate.opsForSet().size(key);
        } catch (Exception e) {
            e.printStackTrace();
            return 0;
        }
    }


    

    public long setRemove(String key, Object... values) {
        try {
            Long count = redisTemplate.opsForSet().remove(key, values);
            return count;
        } catch (Exception e) {
            e.printStackTrace();
            return 0;
        }
    }

    // ===============================list=================================

    
    public List lGet(String key, long start, long end) {
        try {
            return redisTemplate.opsForList().range(key, start, end);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }


    
    public long lGetListSize(String key) {
        try {
            return redisTemplate.opsForList().size(key);
        } catch (Exception e) {
            e.printStackTrace();
            return 0;
        }
    }


    
    public Object lGetIndex(String key, long index) {
        try {
            return redisTemplate.opsForList().index(key, index);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }


    
    public boolean lSet(String key, Object value) {
        try {
            redisTemplate.opsForList().rightPush(key, value);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }


    
    public boolean lSet(String key, Object value, long time,TimeUnit timeUnit) {
        try {
            redisTemplate.opsForList().rightPush(key, value);
            if (time > 0) {
                expire(key, time,timeUnit);
            }
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }

    }


    
    public boolean lSet(String key, List value) {
        try {
            redisTemplate.opsForList().rightPushAll(key, value);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }

    }


    
    public boolean lSet(String key, List value, long time,TimeUnit timeUnit) {
        try {
            redisTemplate.opsForList().rightPushAll(key, value);
            if (time > 0) {
                expire(key, time,timeUnit);
            }
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }


    

    public boolean lUpdateIndex(String key, long index, Object value) {
        try {
            redisTemplate.opsForList().set(key, index, value);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }


    

    public long lRemove(String key, long count, Object value) {
        try {
            Long remove = redisTemplate.opsForList().remove(key, count, value);
            return remove;
        } catch (Exception e) {
            e.printStackTrace();
            return 0;
        }

    }

    // ===============================HyperLogLog=================================

    public long pfadd(String key, String value) {
        return redisTemplate.opsForHyperLogLog().add(key, value);
    }

    public long pfcount(String key) {
        return redisTemplate.opsForHyperLogLog().size(key);
    }

    public void pfremove(String key) {
        redisTemplate.opsForHyperLogLog().delete(key);
    }

    public void pfmerge(String key1, String key2) {
        redisTemplate.opsForHyperLogLog().union(key1, key2);
    }
}
 

以下为集群模式,SpringBoot 启动日志中redis相关日志,可以看到打印出集群信息:

2021-11-17 17:43:03.255  INFO [           main] [] org.redisson.Version                     [41] : Redisson 3.16.2
2021-11-17 17:43:04.755  INFO [           main] [] o.r.cluster.ClusterConnectionManager     [115] : Redis cluster nodes configuration got from 192.168.104.79/192.168.104.79:6379:
ab94d6ed24c65a51280440d4bee3e126e505f960 192.168.104.81:6379@16379 slave 176081ad778f5518fa7e22c3d109ddb90ab1788f 0 1637142182203 7 connected
acfbc5be5f52b00729373a73db2822b096cfd871 192.168.104.81:6380@16380 slave 508a468c6e53ca352a3a84fffc85f5c5be6edca7 0 1637142181202 3 connected
a1f27e604c3051e16fc91b7065daa15315dab26e 192.168.104.80:6380@16380 slave aa8701f1c94a62eaa59e994508f7d224b20b9c50 0 1637142184205 1 connected
176081ad778f5518fa7e22c3d109ddb90ab1788f 192.168.104.79:6380@16380 master - 0 1637142182000 7 connected 10923-16383
aa8701f1c94a62eaa59e994508f7d224b20b9c50 192.168.104.79:6379@16379 myself,master - 0 1637142183000 1 connected 0-5460
508a468c6e53ca352a3a84fffc85f5c5be6edca7 192.168.104.80:6379@16379 master - 0 1637142183204 3 connected 5461-10922

2021-11-17 17:43:04.973  INFO [sson-netty-2-15] [] o.r.c.pool.MasterPubSubConnectionPool    [166] : 1 connections initialized for 192.168.104.79/192.168.104.79:6379
2021-11-17 17:43:05.047  INFO [sson-netty-2-25] [] o.r.c.pool.MasterPubSubConnectionPool    [166] : 1 connections initialized for 192.168.104.80/192.168.104.80:6379
2021-11-17 17:43:05.060  INFO [sson-netty-2-22] [] o.r.c.pool.MasterPubSubConnectionPool    [166] : 1 connections initialized for 192.168.104.79/192.168.104.79:6380
2021-11-17 17:43:05.108  INFO [sson-netty-2-31] [] o.r.c.pool.MasterConnectionPool          [166] : 24 connections initialized for 192.168.104.79/192.168.104.79:6379
2021-11-17 17:43:05.187  INFO [sson-netty-2-10] [] o.r.c.pool.MasterConnectionPool          [166] : 24 connections initialized for 192.168.104.80/192.168.104.80:6379
2021-11-17 17:43:05.220  INFO [sson-netty-2-23] [] o.r.c.pool.MasterConnectionPool          [166] : 24 connections initialized for 192.168.104.79/192.168.104.79:6380
2021-11-17 17:43:05.432  INFO [sson-netty-2-31] [] o.r.c.pool.PubSubConnectionPool          [166] : 1 connections initialized for 192.168.104.80/192.168.104.80:6380
2021-11-17 17:43:05.447  INFO [sson-netty-2-32] [] o.r.c.pool.PubSubConnectionPool          [166] : 1 connections initialized for 192.168.104.81/192.168.104.81:6380
2021-11-17 17:43:05.502  INFO [sson-netty-2-29] [] o.r.c.pool.PubSubConnectionPool          [166] : 1 connections initialized for 192.168.104.81/192.168.104.81:6379
2021-11-17 17:43:05.503  INFO [sson-netty-2-17] [] o.r.cluster.ClusterConnectionManager     [333] : slaves: [redis://192.168.104.80:6380] added for slot ranges: [[0-5460]]
2021-11-17 17:43:05.504  INFO [sson-netty-2-17] [] o.r.cluster.ClusterConnectionManager     [340] : master: redis://192.168.104.79:6379 added for slot ranges: [[0-5460]]
2021-11-17 17:43:05.504  INFO [sson-netty-2-17] [] o.r.connection.pool.SlaveConnectionPool  [166] : 24 connections initialized for 192.168.104.80/192.168.104.80:6380
2021-11-17 17:43:05.535  INFO [sson-netty-2-22] [] o.r.cluster.ClusterConnectionManager     [333] : slaves: [redis://192.168.104.81:6380] added for slot ranges: [[5461-10922]]
2021-11-17 17:43:05.535  INFO [sson-netty-2-22] [] o.r.cluster.ClusterConnectionManager     [340] : master: redis://192.168.104.80:6379 added for slot ranges: [[5461-10922]]
2021-11-17 17:43:05.535  INFO [sson-netty-2-22] [] o.r.connection.pool.SlaveConnectionPool  [166] : 24 connections initialized for 192.168.104.81/192.168.104.81:6380
2021-11-17 17:43:05.557  INFO [sson-netty-2-26] [] o.r.cluster.ClusterConnectionManager     [333] : slaves: [redis://192.168.104.81:6379] added for slot ranges: [[10923-16383]]
2021-11-17 17:43:05.558  INFO [sson-netty-2-26] [] o.r.cluster.ClusterConnectionManager     [340] : master: redis://192.168.104.79:6380 added for slot ranges: [[10923-16383]]
2021-11-17 17:43:05.558  INFO [sson-netty-2-26] [] o.r.connection.pool.SlaveConnectionPool  [166] : 24 connections initialized for 192.168.104.81/192.168.104.81:6379
2021-11-17 17:43:05.682  INFO [           main] [] trationDelegate$BeanPostProcessorChecker [330] : Bean 'redisson' of type [org.redisson.Redisson] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-11-17 17:43:05.696  INFO [           main] [] trationDelegate$BeanPostProcessorChecker [330] : Bean 'redissonConnectionFactory' of type [org.redisson.spring.data.connection.RedissonConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-11-17 17:43:05.785  INFO [           main] [] trationDelegate$BeanPostProcessorChecker [330] : Bean 'redisTemplate' of type [org.springframework.data.redis.core.RedisTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-11-17 17:43:05.791  INFO [
转载请注明:文章转载自 www.mshxw.com
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号