个人博客
如何在分布式环境下,像用synchronized
关键字那样使用分布式锁。比如开发一个注解,叫@DistributionLock
,作用于一个方法函数上,每次调方法前加锁,调完之后自动释放锁。
可以利用Spring AOP中环绕通知的特性,完全满足上面的要求。
1、Maven依赖
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.4.RELEASE</version> </parent>
<dependencies> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson-spring-boot-starter</artifactId> <version>3.11.5</version> </dependency>
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> </dependencies>
|
这里采用redisson
这个第三方库来做redis
的分布式锁,redis
配置不在这里展开,可以参考文末贴出的代码地址或具体可以看这篇 https://zhaoxiaobin.net/6ba1dd4958f4/
2、开发自定义注解
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface DistributionLock {
String value() default "";
int waitTime() default 5 * 1000;
int index() default -1; }
|
这里按照锁的粗细粒度分为两种模式:
- 粗粒度:由注解中的
value
字段指定,编译阶段就确定了,同一个方法(业务)共享该锁。不管是谁调这个方法,都是按串行执行。 - 细粒度:方法的参数列表中的一个参数作为锁的
key
值,比如一个编号、一个流水号等等业务唯一参数。主要应用在如果同一个(同一组)交易允许不同人同时做,但同一个人必须串行执行的场景;由index
指定作为key
的形参位置。
3、开发切面
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
| @Order(Integer.MIN_VALUE + 1) @Aspect @Component @Slf4j public class DistributionLockAspect { @Autowired private RedissonClient redissonClient;
@Around("@annotation(distributionLock)") public Object doAround(ProceedingJoinPoint point, DistributionLock distributionLock) throws Throwable { String methodName = point.getSignature().getName(); if (StringUtils.isNotBlank(distributionLock.value())) { return this.tryLock(point, distributionLock.value(), distributionLock.waitTime()); } else if (distributionLock.index() >= 0){ Object[] args = point.getArgs(); int index = distributionLock.index(); if (args.length <= index) { log.error("目标方法:{}上没有第:{}参数", methodName, index); throw new RuntimeException("目标方法:" + methodName + "上没有第:" + index + "参数"); } String key = args[index].toString(); return this.tryLock(point, key, distributionLock.waitTime()); } else { log.error("没有配置具体分布式锁的key,目标方法:{}", methodName); throw new RuntimeException("没有配置具体分布式锁的key,目标方法:" + methodName); } }
private Object tryLock(ProceedingJoinPoint point, String key, int waitTime) throws Throwable { RLock disLock = redissonClient.getLock(key); boolean tryLock = disLock.tryLock(waitTime, TimeUnit.MILLISECONDS); if (!tryLock) {
return false; } else { try { return point.proceed(point.getArgs()); } finally { disLock.unlock(); } } } }
|
4、模拟测试扣库存
业务操作
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| @Service public class DistributionLockDemo {
public static int count = 20;
public boolean increment() { if (count > 0) { count--; return true; } return false; }
public int get() { return count; } }
|
模拟发起交易
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| @RunWith(SpringRunner.class) @SpringBootTest @Slf4j public class DistributionLockTests { @Autowired private DistributionLockDemo distributionLockDemo;
@Test public void testDistributionLock() { long successCount = IntStream.range(0, 500).parallel().filter(j -> distributionLockDemo.increment()).count();
log.info("成功数:{}", successCount); log.info("剩余库存:{}", distributionLockDemo.get()); } }
|
这里用Java8
的并行流并发去发50个交易来模拟扣20的库存,不加锁的情况下:
1 2
| 2021-06-30 18:10:20,942 [INFO] [main] [net.zhaoxiaobin.redisson.DistributionLockTests:35] [] 成功数:27 2021-06-30 18:10:20,942 [INFO] [main] [net.zhaoxiaobin.redisson.DistributionLockTests:36] [] 剩余库存:0
|
给increment
方法加上分布式锁注解,再测试:
1 2 3 4 5 6 7 8
| @DistributionLock(value = "incrementLock", waitTime = 1000) public boolean increment() { if (count > 0) { count--; return true; } return false; }
|
1 2
| 2021-06-30 18:11:30,722 [INFO] [main] [net.zhaoxiaobin.redisson.DistributionLockTests:35] [] 成功数:20 2021-06-30 18:11:30,722 [INFO] [main] [net.zhaoxiaobin.redisson.DistributionLockTests:36] [] 剩余库存:0
|
以上案例不是太严谨,为了测试方便,只是测了单机并没有测集群的效果。有条件可以连上数据库并起多个服务去扣库里的数据,看分布式锁效果如何。
5、分布式锁的安全性
相信有不少同学都知道Redis
的分布式锁不是那么的万无一失;比如主从切换导致锁丢失,还有NPC等问题影响锁的安全性,具体可以参考这篇 https://zhaoxiaobin.net/89e72f2a4185/
建议:
- 对于要求数据绝对正确的业务,在资源层一定要做好「兜底」,比如数据库的乐观锁、类似
CAS
等操作。 - 使用分布式锁,在上层完成「互斥」目的,虽然极端情况下锁会失效,但它可以最大程度把并发请求阻挡在最上层,减轻操作资源层的压力。
代码地址