• SpringBoot集成Redisson的分布式锁


    依赖包:

            
                org.redisson
                redisson
                3.18.1
            
    
    • 1
    • 2
    • 3
    • 4
    • 5

    Redis配置:

    可以在 application.properties 中添加。

    spring.redis.host=127.0.0.1
    spring.redis.port=6379
    spring.redis.database=0
    ##连接超时时间(毫秒)
    spring.redis.timeout=1800000
    spring.redis.password=
    ##连接池最大阻塞等待时间(使用负值表示没有限制)
    spring.redis.lettuce.pool.max-wait=-1
    ##连接池中的最大空闲连接
    spring.redis.lettuce.pool.max-idle=8
    ##连接池中的最小空闲连接
    spring.redis.lettuce.pool.min-idle=0
    ##连接池最大连接数(使用负值表示没有限制)
    spring.redis.lettuce.pool.max-active=20
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    Redis配置

    
    @Configuration
    @ConditionalOnMissingBean(RedissonClient.class)
    @Import(RedissonClientConfig.RedissonConfig.class)
    public class RedissonClientConfig {
    
        private final Config config;
    
        RedissonClientConfig(Config config) {
            this.config = config;
        }
    
        @Bean
        public RedissonClient redissonClient() {
            return Redisson.create(config);
        }
    
        @ConditionalOnMissingBean(Config.class)
        @EnableConfigurationProperties({RedisProperties.class})
        static class RedissonConfig {
    
            @Autowired
            private RedisProperties redisProperties;
    
            @Bean
            public Config redissonConfig() {
                Config config = new Config();
    
                //哨兵模式
                if (redisProperties.getSentinel() != null) { //sentinel
                    SentinelServersConfig sentinelServersConfig = config.useSentinelServers();
                    org.springframework.boot.autoconfigure.data.redis.RedisProperties.Sentinel sentinel = redisProperties.getSentinel();
                    sentinelServersConfig.setMasterName(sentinel.getMaster());
                    sentinelServersConfig.addSentinelAddress(sentinel.getNodes().toArray(new String[sentinel.getNodes().size()]));
                    sentinelServersConfig.setDatabase(redisProperties.getDatabase());
                    baseConfig(sentinelServersConfig, redisProperties);
    
                    //集群模式
                } else if (redisProperties.getCluster() != null) { //cluster
                    ClusterServersConfig clusterServersConfig = config.useClusterServers();
                    org.springframework.boot.autoconfigure.data.redis.RedisProperties.Cluster cluster = redisProperties.getCluster();
                    clusterServersConfig.addNodeAddress(cluster.getNodes().toArray(new String[cluster.getNodes().size()]));
                    clusterServersConfig.setFailedSlaveReconnectionInterval(cluster.getMaxRedirects());
                    baseConfig(clusterServersConfig, redisProperties);
    
                    //普通模式
                } else { //single server
                    SingleServerConfig singleServerConfig = config.useSingleServer();
                    // format as redis://127.0.0.1:7181 or rediss://127.0.0.1:7181 for SSL
                    String schema = redisProperties.isSsl() ? "rediss://" : "redis://";
                    singleServerConfig.setAddress(schema + redisProperties.getHost() + ":" + redisProperties.getPort());
                    singleServerConfig.setDatabase(redisProperties.getDatabase());
                    baseConfig(singleServerConfig, redisProperties);
                }
                config.setCodec(new JsonJacksonCodec());
                return config;
            }
    
            private void baseConfig(BaseConfig config, RedisProperties properties) {
                if (!StringUtils.isBlank(properties.getPassword())) {
                    config.setPassword(properties.getPassword());
                }
                if (properties.getTimeout() != null) {
                    config.setTimeout(Long.valueOf(properties.getTimeout().getSeconds() * 1000).intValue());
                }
                if (!StringUtils.isBlank(properties.getClientName())) {
                    config.setClientName(properties.getClientName());
                }
            }
        }
    
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73

    Redisson代码示例

    • 分布式锁:
    @Service
    public class RedissonServiceImpl {
    
        @Autowired
        private RedissonClient redissonClient;
    
        public void getRedissonLock() {
            RLock lock = redissonClient.getLock("myLock");
            lock.lock();
            System.out.println("已加锁,在此处执行逻辑.");
            lock.unlock();
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    参考资料:

    https://huaweicloud.csdn.net/637eeec0df016f70ae4c9de7.html
    https://blog.csdn.net/weixin_53922163/article/details/127482085

  • 相关阅读:
    【毕业设计1】基于单片机的智能灌溉系统 - 物联网 嵌入式 stm32 c51
    浅谈word格式:.doc和.docx的优缺点及区别
    Linux内核分析(十七)--内存管理之用户栈与内核栈及内核地址空间分布
    [Lecture_Review] [VALSE]薪火相传经验谈——学长学姐教你如何做科研
    PHP---网站的基本概念
    Java 性能优化实战案例分析:乐观锁和无锁
    【毕业设计】基于javaEE+原生servlet+tomcat的教师工资管理系统设计与实现(毕业论文+程序源码)——教师工资管理系统
    【LeetCode热题100】--136.只出现一次的数字
    解决Flutter启动一直卡在 Running Gradle task ‘assembleDebug‘...
    java垃圾回收
  • 原文地址:https://blog.csdn.net/sinat_32502451/article/details/133799192