SpringBoot整合Redisson实现分布式锁
redisson是架设在redis基础上的一个java驻内存数据网格(in-memory data grid)。充分的利用了redis键值数据库提供的一系列优势,基于java实用工具包中常用接口,为使用者提供了一系列具有分布式特性的常用工具类。使得原本作为协调单机多线程并发程序的工具包获得了协调分布式多机多线程并发系统的能力,大大降低了设计和研发大规模分布式系统的难度。同时结合各富特色的分布式服务,更进一步简化了分布式环境中程序相互之间的协作。
github地址:https://github.com/redisson/redisson
一、添加依赖
<dependencies> <dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-web</artifactid> </dependency> <!-- springboot整合redis --> <dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-data-redis</artifactid> </dependency> <!-- springboot整合redisson --> <dependency> <groupid>org.redisson</groupid> <artifactid>redisson-spring-boot-starter</artifactid> <version>3.13.6</version> </dependency> </dependencies>
二、redis配置文件
server: port: 8000 spring: redis: host: localhost port: 6379 password: null database: 1 timeout: 30000
三、新建配置类
@configuration public class myredissonconfig { @value("${spring.redis.host}") string redishost; @value("${spring.redis.port}") string redisport; @value("${spring.redis.password}") string redispassword; @value("${spring.redis.timeout}") integer redistimeout; /** * redisson配置 * @return */ @bean redissonclient redissonclient() { //1、创建配置 config config = new config(); redishost = redishost.startswith("redis://") ? redishost : "redis://" + redishost; singleserverconfig serverconfig = config.usesingleserver() .setaddress(redishost + ":" + redisport) .settimeout(redistimeout); if (stringutils.isnotblank(redispassword)) { serverconfig.setpassword(redispassword); } return redisson.create(config); } }
//单机 redissonclient redisson = redisson.create(); config config = new config(); config.usesingleserver().setaddress("myredisserver:6379"); redissonclient redisson = redisson.create(config); //主从 config config = new config(); config.usemasterslaveservers() .setmasteraddress("127.0.0.1:6379") .addslaveaddress("127.0.0.1:6389", "127.0.0.1:6332", "127.0.0.1:6419") .addslaveaddress("127.0.0.1:6399"); redissonclient redisson = redisson.create(config); //哨兵 config config = new config(); config.usesentinelservers() .setmastername("mymaster") .addsentineladdress("127.0.0.1:26389", "127.0.0.1:26379") .addsentineladdress("127.0.0.1:26319"); redissonclient redisson = redisson.create(config); //集群 config config = new config(); config.useclusterservers() .setscaninterval(2000) // cluster state scan interval in milliseconds .addnodeaddress("127.0.0.1:7000", "127.0.0.1:7001") .addnodeaddress("127.0.0.1:7002"); redissonclient redisson = redisson.create(config);
四、使用分布式锁
可重入锁
基于redis的redisson分布式可重入锁rlock对象实现了java.util.concurrent.locks.lock接口。
@requestmapping("/redisson") public string testredisson(){ //获取分布式锁,只要锁的名字一样,就是同一把锁 rlock lock = redissonclient.getlock("lock"); //加锁(阻塞等待),默认过期时间是无限期 lock.lock(); try{ //如果业务执行过长,redisson会自动给锁续期 thread.sleep(1000); system.out.println("加锁成功,执行业务逻辑"); } catch (interruptedexception e) { e.printstacktrace(); } finally { //解锁,如果业务执行完成,就不会继续续期 lock.unlock(); } return "hello redisson!"; }
如果拿到分布式锁的节点宕机,且这个锁正好处于锁住的状态时,会出现锁死的状态,为了避免这种情况的发生,锁都会设置一个过期时间。这样也存在一个问题,一个线程拿到了锁设置了30s超时,在30s后这个线程还没有执行完毕,锁超时释放了,就会导致问题,redisson给出了自己的答案,就是 watch dog 自动延期机制。
redisson提供了一个监控锁的看门狗,它的作用是在redisson实例被关闭前,不断的延长锁的有效期,也就是说,如果一个拿到锁的线程一直没有完成逻辑,那么看门狗会帮助线程不断的延长锁超时时间,锁不会因为超时而被释放。
默认情况下,看门狗的续期时间是30s,也可以通过修改config.lockwatchdogtimeout来另行指定。
另外redisson 还提供了可以指定leasetime参数的加锁方法来指定加锁的时间。超过这个时间后锁便自动解开了,不会延长锁的有效期。
在redissonlock类的renewexpiration()方法中,会启动一个定时任务每隔30/3=10秒给锁续期。如果业务执行期间,应用挂了,那么不会自动续期,到过期时间之后,锁会自动释放。
private void renewexpiration() { expirationentry ee = expiration_renewal_map.get(getentryname()); if (ee == null) { return; } timeout task = commandexecutor.getconnectionmanager().newtimeout(new timertask() { @override public void run(timeout timeout) throws exception { expirationentry ent = expiration_renewal_map.get(getentryname()); if (ent == null) { return; } long threadid = ent.getfirstthreadid(); if (threadid == null) { return; } rfuture<boolean> future = renewexpirationasync(threadid); future.oncomplete((res, e) -> { if (e != null) { log.error("can't update lock " + getname() + " expiration", e); return; } if (res) { // reschedule itself renewexpiration(); } }); } }, internallockleasetime / 3, timeunit.milliseconds); ee.settimeout(task); }
另外redisson还提供了leasetime的参数来指定加锁的时间。超过这个时间后锁便自动解开了。
// 加锁以后10秒钟自动解锁 // 无需调用unlock方法手动解锁 lock.lock(10, timeunit.seconds); // 尝试加锁,最多等待100秒,上锁以后10秒自动解锁 boolean res = lock.trylock(100, 10, timeunit.seconds);
如果指定了锁的超时时间,底层直接调用lua脚本,进行占锁。如果超过leasetime,业务逻辑还没有执行完成,则直接释放锁,所以在指定leasetime时,要让leasetime大于业务执行时间。redissonlock类的trylockinnerasync()方法
<t> rfuture<t> trylockinnerasync(long waittime, long leasetime, timeunit unit, long threadid, redisstrictcommand<t> command) { internallockleasetime = unit.tomillis(leasetime); return evalwriteasync(getname(), longcodec.instance, command, "if (redis.call('exists', keys[1]) == 0) then " + "redis.call('hincrby', keys[1], argv[2], 1); " + "redis.call('pexpire', keys[1], argv[1]); " + "return nil; " + "end; " + "if (redis.call('hexists', keys[1], argv[2]) == 1) then " + "redis.call('hincrby', keys[1], argv[2], 1); " + "redis.call('pexpire', keys[1], argv[1]); " + "return nil; " + "end; " + "return redis.call('pttl', keys[1]);", collections.singletonlist(getname()), internallockleasetime, getlockname(threadid)); }
读写锁
分布式可重入读写锁允许同时有多个读锁和一个写锁处于加锁状态。在读写锁中,读读共享、读写互斥、写写互斥。
rreadwritelock rwlock = redisson.getreadwritelock("anyrwlock"); // 最常见的使用方法 rwlock.readlock().lock(); // 或 rwlock.writelock().lock();
读写锁测试类,当访问write接口时,read接口会被阻塞住。
@restcontroller public class testcontroller { @autowired redissonclient redissonclient; @autowired stringredistemplate redistemplate; @requestmapping("/write") public string write(){ rreadwritelock readwritelock = redissonclient.getreadwritelock("wr-lock"); rlock writelock = readwritelock.writelock(); string s = uuid.randomuuid().tostring(); writelock.lock(); try { redistemplate.opsforvalue().set("wr-lock-key", s); thread.sleep(10000); } catch (interruptedexception e) { e.printstacktrace(); }finally { writelock.unlock(); } return s; } @requestmapping("/read") public string read(){ rreadwritelock readwritelock = redissonclient.getreadwritelock("wr-lock"); rlock readlock = readwritelock.readlock(); string s = ""; readlock.lock(); try { s = redistemplate.opsforvalue().get("wr-lock-key"); } finally { readlock.unlock(); } return s; } }
信号量(semaphore)
基于redis的redisson的分布式信号量(semaphore)java对象rsemaphore
采用了与java.util.concurrent.semaphore
类似的接口和用法
关于信号量的使用你们能够想象一下这个场景,有三个停车位,当三个停车位满了后,其余车就不停了。能够把车位比做信号,如今有三个信号,停一次车,用掉一个信号,车离开就是释放一个信号。
咱们用 redisson 来演示上述停车位的场景。
先定义一个占用停车位的方法:
/** * 停车,占用停车位 * 总共 3 个车位 */ @responsebody @requestmapping("park") public string park() throws interruptedexception { // 获取信号量(停车场) rsemaphore park = redisson.getsemaphore("park"); // 获取一个信号(停车位) park.acquire(); return "ok"; }
再定义一个离开车位的方法:
/** * 释放车位 * 总共 3 个车位 */ @responsebody @requestmapping("leave") public string leave() throws interruptedexception { // 获取信号量(停车场) rsemaphore park = redisson.getsemaphore("park"); // 释放一个信号(停车位) park.release(); return "ok"; }
为了简便,我用 redis 客户端添加了一个 key:“park”,值等于 3,表明信号量为 park,总共有三个值。
而后用 postman 发送 park 请求占用一个停车位。
而后在 redis 客户端查看 park 的值,发现已经改成 2 了。继续调用两次,发现 park 的等于 0,当调用第四次的时候,会发现请求一直处于等待中
,说明车位不够了。若是想要不阻塞,能够用 tryacquire 或 tryacquireasync。
咱们再调用离开车位的方法,park 的值变为了 1,表明车位剩余 1 个。
注意:屡次执行释放信号量操做,剩余信号量会一直增长,而不是到 3 后就封顶了。
闭锁(countdownlatch)
countdownlatch作用:某一线程,等待其他线程执行完毕之后,自己再继续执行。
rcountdownlatch latch = redisson.getcountdownlatch("anycountdownlatch"); latch.trysetcount(1); latch.await(); // 在其他线程或其他jvm里 rcountdownlatch latch = redisson.getcountdownlatch("anycountdownlatch"); latch.countdown();
在testcontroller中添加测试方法,访问close接口时,调用await()方法进入阻塞状态,直到有三次访问release接口时,close接口才会返回。
@requestmapping("/close") public string close() throws interruptedexception { rcountdownlatch close = redissonclient.getcountdownlatch("close"); close.trysetcount(3); close.await(); return "close"; } @requestmapping("/release") public string release(){ rcountdownlatch close = redissonclient.getcountdownlatch("close"); close.countdown(); return "release"; }
到此这篇关于springboot整合redisson实现分布式锁的文章就介绍到这了,更多相关springboot redisson分布式锁内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: AI怎么利用旋转工具快速绘制太阳?
下一篇: MySQL 四种连接和多表查询详解
推荐阅读
-
Python实现的redis分布式锁功能示例
-
SpringBoot整合MybatisPlus的简单教程实现(简单整合)
-
漫谈Redis分布式锁实现
-
spring整合atomikos实现分布式事务的方法示例
-
mongo分布式锁Java实现方法(推荐)
-
redis实现分布式锁方式(redis分布式锁三个方法)
-
SpringBoot整合Elasticsearch7.2.0的实现方法
-
spring boot整合redis实现shiro的分布式session共享的方法
-
详解ASP.Net Core 中如何借助CSRedis实现一个安全高效的分布式锁
-
详解springboot整合ehcache实现缓存机制