【SimpleFunction系列二.2】SpringBoot注解整合Redisson分布式锁

本文涉及的产品
云数据库 Tair(兼容Redis),内存型 2GB
Redis 开源版,标准版 2GB
推荐场景:
搭建游戏排行榜
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
简介: Redisson是架设在Redis基础上的一个Java驻内存数据网格(In-Memory Data Grid)。充分的利用了Redis键值数据库提供的一系列优势,基于Java实用工具包中常用接口,为使用者提供了一系列具有分布式特性的常用工具类。

<div align="center">

   <a href="https://moyifeng.blog.csdn.net/"> <img src="https://badgen.net/badge/MYF/莫逸风CSDN/4ab8a1?icon=rss"></a>

   <a href="https://github.com/1046895947"> <img src="https://badgen.net/badge/MYF/莫逸风GitHub/4ab8a1?icon=github"></a>

</div>


#### 版本说明(代码在GitHub)


基于simple_functions项目1.1.0分支开发


```mermaid

graph LR;

A(1.0.0:初始化hello接口)-->A1;

A1(1.1.0:整合Redis)-->A11;

A11(1.1.1Redis分布式锁)

```

### 1. Redisson


Redisson是架设在Redis基础上的一个Java驻内存数据网格(In-Memory Data Grid)。充分的利用了Redis键值数据库提供的一系列优势,基于Java实用工具包中常用接口,为使用者提供了一系列具有分布式特性的常用工具类。使得原本作为协调单机多线程并发程序的工具包获得了协调分布式多机多线程并发系统的能力,大大降低了设计和研发大规模分布式系统的难度。同时结合各富特色的分布式服务,更进一步简化了分布式环境中程序相互之间的协作。


[【Redisson项目介绍—官方文档】](https://github.com/redisson/redisson/wiki/Redisson%E9%A1%B9%E7%9B%AE%E4%BB%8B%E7%BB%8D)


### 2. 整合Redisson


SpringBoot整合Redisson有两种方式1. 程序化配置方式。2. 文件方式配置


1. **程序化配置**


   Redisson程序化的配置方法是通过构建Config对象实例来实现的。例如:

   ```java

   Config config = new Config();

   config.setTransportMode(TransportMode.EPOLL);

   config.useClusterServers()

       //可以用"rediss://"来启用SSL连接

       .addNodeAddress("redis://127.0.0.1:7181");

   ```


2. **文件方式配置**


   Redisson的配置文件可以是或YAML格式。 通过调用`config.fromYAML`方法并指定一个`File`实例来实现读取YAML格式的配置:


   ```java

   Config config = Config.fromYAML(new File("config-file.yaml"));

   RedissonClient redisson = Redisson.create(config);

   ```


#### 2.1 引入Maven依赖


```xml

<!-- Redisson -->

<dependency>

 <groupId>org.redisson</groupId>

 <artifactId>redisson</artifactId>

 <version>3.17.3</version>

</dependency>

```


#### 2.2 自定义配置类


在Redis.config配置类中添加方法


```java

/**

* 构建Redisson操作对象

* @return RedissonClient

*/

@Bean(destroyMethod = "shutdown") // 服务停止后调用 shutdown 方法。

public RedissonClient redissonClient() {

 Config config = new Config();

 // 单机模式。

 config.useSingleServer().setAddress("redis://" + host + ":" + port);

 // 看门狗的默认时间。

 config.setLockWatchdogTimeout(redissonProperties.getLockWatchdogTimeout());

 return Redisson.create(config);

}

```


#### 2.3 新建DistributedLock分布式锁


```java

@Target(ElementType.METHOD)

@Retention(RetentionPolicy.RUNTIME)

@Documented

public @interface DistributedLock {

   /**

    * 锁的模式:默认自动模式,当参数只有一个使用 REENTRANT 参数多个使用RED_LOCK

    *

    * @return 锁模式

    */

   LockModel lockModel() default LockModel.AUTO;


   /**

    * 增加key的前缀

    * 设计中预将列表数组转化为多个key使用联锁——"#{#apple.getArray()}"——将数组的每一项作为一个锁。

    * "redisson-#{#apple.getArray()}" 显然会被认为是一个字符串,而不会使用联锁,应将前缀放到keyPrefix中

    */

   String keyPrefix() default "";


   /**

    * 如果keys有多个AUTO模式使用红锁

    *

    * @return keys

    */

   String[] keys() default {};


   /**

    * 租赁时间,默认为0取默认配置,-1,为无限续租。

    * @return 租赁时间

    */

   long leaseTime() default 0;


   /**

    * 等待时间,默认为0取默认配置,-1,为一直等待

    * @return 等待时间

    */

   long waitTime() default 0;

}

```


##### 2.3.1 LockModel:锁的模式


默认自动模式,当参数只有一个使用 REENTRANT,参数多个使用RED_LOCK


```java

public enum LockModel {

   /**

    * 可重入锁

    */

   REENTRANT,

   /**

    * 公平锁

    */

   FAIR,

   /**

    * 联锁

    */

   MULTIPLE,

   /**

    * 红锁

    */

   RED_LOCK,

   /**

    * 读锁

    */

   READ,

   /**

    * 写锁

    */

   WRITE,

   /**

    * 自动模式,当参数只有一个使用 REENTRANT 参数多个 RED_LOCK

    */

   AUTO

}

```


##### 2.3.2 keyPrefix设计意义


```

@DistributedLock(keys = "redisson-#{#apple.getArray()}")

```


如上的key设置,转换后会变成,redisson-a,b,无法对key进行分割为多个key。


```

@DistributedLock(keys = "#{#apple.getArray()}",keyPrefix = "redisson")

```


如果key设置为上方的方式,key将会被解析为redisson:a,redisson:b,的红锁。


##### 2.3.3 keys


可设置为数组,多个key将使用红锁,key的解析过程增加了TemplateParserContext表达式解析上下文,即"redisson-#{#apple.getArray()}"这种表达式只有#{}里面的内容会被作为SpEL表达式解析。


##### 2.3.4 leaseTime:租赁时间


默认值为0,0则取配置文件默认配置,-1则是使用看门狗机制一直续期。


##### 2.3.5 waitTime:等待时间


默认值为0,0则取配置文件默认配置,-1则代表一直等待。


#### 2.4 分布式锁AOP


实现DistributedLockAop,主要是解析keys的SpEL表达式,然后根据注解配置,对方法进行增强。


**DistributedLockAop.java**


```java

@Aspect

@Component

@RequiredArgsConstructor

public class DistributedLockAop {

 /**

    * 日志

    */

 private final Logger log = LoggerFactory.getLogger(getClass());

 /**

    * SpEL表达式

    */

 private final ExpressionParser parser = new SpelExpressionParser();

 /**

    * 表达式解析上下文,只有#{}里的内容才会被作为SqEL表达式解析

    */

 private final TemplateParserContext parserContext = new TemplateParserContext();


 private final RedissonProperties redissonProperties;

 private final RedissonClient redissonClient;


 /**

    * 切入点

    *

    * @param distributedLock 分布式锁注解

    */

 @Pointcut("@annotation(distributedLock)")

 public void log(DistributedLock distributedLock) {

 }


 @Around(value = "log(distributedLock)", argNames = "proceedingJoinPoint,distributedLock")

 public Object aroundPrintLog(ProceedingJoinPoint proceedingJoinPoint, DistributedLock distributedLock) throws Throwable {

   String[] keys = distributedLock.keys();

   if (keys.length == 0) {

     throw new LockException("keys不能为空");

   }

   String[] parameterNames = new LocalVariableTableParameterNameDiscoverer().getParameterNames(((MethodSignature) proceedingJoinPoint.getSignature()).getMethod());

   Object[] args = proceedingJoinPoint.getArgs();


   long leaseTime = distributedLock.leaseTime() == 0 ? redissonProperties.getDefaultLeaseTime() : distributedLock.leaseTime();

   long waitTime = distributedLock.waitTime() == 0 ? redissonProperties.getDefaultWaitTime() : distributedLock.waitTime();

   // 锁模式

   LockModel lockModel = distributedLock.lockModel();

   if (lockModel.equals(LockModel.AUTO)) {

     lockModel = Optional.ofNullable(redissonProperties.getDefaultLockModel())

       .orElse(keys.length > 1 ? LockModel.RED_LOCK : LockModel.REENTRANT);

   }

   if (!lockModel.equals(LockModel.MULTIPLE) && !lockModel.equals(LockModel.RED_LOCK) && keys.length > 1) {

     throw new LockException("参数有多个,锁模式为 -> " + lockModel.name() + ".无法锁定");

   }

   log.debug("锁模式 -> {},等待锁定时间 -> {}秒.锁定最长时间 -> {}秒", lockModel.name(), waitTime / 1000, leaseTime / 1000);


   boolean res = false;

   RLock rLock = null;

   switch (lockModel) {

     case FAIR:

       rLock = redissonClient.getFairLock(getValueBySpEL(keys[0], distributedLock.keyPrefix(), parameterNames, args).get(0));

       break;

     case RED_LOCK:

       List<RLock> rLocks = new ArrayList<>();

       for (String key : keys) {

         List<String> valueBySpEL = getValueBySpEL(key, distributedLock.keyPrefix(), parameterNames, args);

         for (String s : valueBySpEL) {

           rLocks.add(redissonClient.getLock(s));

         }

       }

       RLock[] locks = new RLock[rLocks.size()];

       int index = 0;

       for (RLock r : rLocks) {

         locks[index++] = r;

       }

       rLock = new RedissonRedLock(locks);

       break;

     case MULTIPLE:

       rLocks = new ArrayList<>();


       for (String key : keys) {

         List<String> valueBySpEL = getValueBySpEL(key, distributedLock.keyPrefix(), parameterNames, args);

         for (String s : valueBySpEL) {

           rLocks.add(redissonClient.getLock(s));

         }

       }

       locks = new RLock[rLocks.size()];

       index = 0;

       for (RLock r : rLocks) {

         locks[index++] = r;

       }

       rLock = new RedissonMultiLock(locks);

       break;

     case REENTRANT:

       List<String> valueBySpEL = getValueBySpEL(keys[0], distributedLock.keyPrefix(), parameterNames, args);

       //如果SpEL表达式是数组或者LIST 则使用红锁

       if (valueBySpEL.size() == 1) {

         rLock = redissonClient.getLock(valueBySpEL.get(0));

       } else {

         locks = new RLock[valueBySpEL.size()];

         index = 0;

         for (String s : valueBySpEL) {

           locks[index++] = redissonClient.getLock(s);

         }

         rLock = new RedissonRedLock(locks);

       }

       break;

     case READ:

       RReadWriteLock readLock = redissonClient.getReadWriteLock(getValueBySpEL(keys[0], distributedLock.keyPrefix(), parameterNames, args).get(0));

       rLock = readLock.readLock();

       break;

     case WRITE:

       RReadWriteLock writeLock = redissonClient.getReadWriteLock(getValueBySpEL(keys[0], distributedLock.keyPrefix(), parameterNames, args).get(0));

       rLock = writeLock.writeLock();

       break;

   }


   //执行aop

   String clasName = proceedingJoinPoint.getTarget().getClass().getName();

   String methodName = proceedingJoinPoint.getSignature().getName();

   if (rLock != null) {

     try {

       if (waitTime == -1) {

         res = true;

         //一直等待加锁

         rLock.lock(leaseTime, TimeUnit.MILLISECONDS);

       } else {

         res = rLock.tryLock(waitTime, leaseTime, TimeUnit.MILLISECONDS);

       }

       if (res) {

         return proceedingJoinPoint.proceed();

       } else {

         throw new LockException(String.format("%s.%s -- 获取锁失败", clasName, methodName));

       }

     } finally {

       if (res) {

         rLock.unlock();

       }

     }

   }

   throw new LockException(String.format("%s.%s -- 创建锁失败", clasName, methodName));

 }



 /**

    * 解析SpEL表达式

    *

    * @param key            key

    * @param keyPrefix      前缀

    * @param parameterNames 参数列表

    * @param values         值

    * @return keys

    */

 private List<String> getValueBySpEL(String key, String keyPrefix, String[] parameterNames, Object[] values) {

   List<String> keys = new ArrayList<>();

   keyPrefix = StringUtils.hasLength(keyPrefix) ? keyPrefix + ":" : "";

   if (!key.contains("#")) {

     String resultKey = redissonProperties.getRedisNameSpace() + ":" + keyPrefix + key;

     keys.add(resultKey);

     return keys;

   }

   //SpEL上下文

   EvaluationContext context = new StandardEvaluationContext();

   for (int i = 0; i < parameterNames.length; i++) {

     context.setVariable(parameterNames[i], values[i]);

   }

   Expression expression = parser.parseExpression(key, parserContext);

   Object value = expression.getValue(context);

   if (value != null) {

     // 数组列表使用联锁,key中不能含有杂质,"redisson-#{#apple.getArray()}" 显然会被认为是一个字符串,应将前缀放到keyPrefix中

     if (value instanceof List<?> valueList) {

       for (Object o : valueList) {

         keys.add(redissonProperties.getRedisNameSpace() + ":" + keyPrefix + o.toString());

       }

     } else if (value.getClass().isArray()) {

       Object[] obj = (Object[]) value;

       for (Object o : obj) {

         keys.add(redissonProperties.getRedisNameSpace() + ":" + keyPrefix + o.toString());

       }

     } else {

       keys.add(redissonProperties.getRedisNameSpace() + ":" + keyPrefix + value);

     }

   }

   log.debug("SpEL表达式key = {},value = {}", key, keys);

   return keys;

 }


}

```


[【Redisson配置—官方文档】](https://github.com/redisson/redisson/wiki/2.-%E9%85%8D%E7%BD%AE%E6%96%B9%E6%B3%95)


### 3. 概念解析


[【SimpleFunction系列二.1】渐进式理解Redis分布式锁](https://blog.csdn.net/qq_38723677/article/details/126132697)


[【SimpleFunction系列二.2】SpringBoot注解整合Redisson分布式锁](https://blog.csdn.net/qq_38723677/article/details/126307218)


[【SimpleFunction系列二.3】Redisson分布式锁8种锁模式剖析]()





相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore &nbsp; &nbsp; ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库&nbsp;ECS 实例和一台目标数据库&nbsp;RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&amp;RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
目录
相关文章
|
28天前
|
XML Java 数据格式
SpringBoot入门(8) - 开发中还有哪些常用注解
SpringBoot入门(8) - 开发中还有哪些常用注解
49 0
|
9天前
|
缓存 NoSQL Java
Spring Boot中的分布式缓存方案
Spring Boot提供了简便的方式来集成和使用分布式缓存。通过Redis和Memcached等缓存方案,可以显著提升应用的性能和扩展性。合理配置和优化缓存策略,可以有效避免常见的缓存问题,保证系统的稳定性和高效运行。
25 3
|
13天前
|
前端开发 Java Spring
Spring MVC核心:深入理解@RequestMapping注解
在Spring MVC框架中,`@RequestMapping`注解是实现请求映射的核心,它将HTTP请求映射到控制器的处理方法上。本文将深入探讨`@RequestMapping`注解的各个方面,包括其注解的使用方法、如何与Spring MVC的其他组件协同工作,以及在实际开发中的应用案例。
28 4
|
1月前
|
XML JSON Java
SpringBoot必须掌握的常用注解!
SpringBoot必须掌握的常用注解!
59 4
SpringBoot必须掌握的常用注解!
|
16天前
|
存储 Java 关系型数据库
在Spring Boot中整合Seata框架实现分布式事务
可以在 Spring Boot 中成功整合 Seata 框架,实现分布式事务的管理和处理。在实际应用中,还需要根据具体的业务需求和技术架构进行进一步的优化和调整。同时,要注意处理各种可能出现的问题,以保障分布式事务的顺利执行。
32 6
|
13天前
|
前端开发 Java 开发者
Spring MVC中的请求映射:@RequestMapping注解深度解析
在Spring MVC框架中,`@RequestMapping`注解是实现请求映射的关键,它将HTTP请求映射到相应的处理器方法上。本文将深入探讨`@RequestMapping`注解的工作原理、使用方法以及最佳实践,为开发者提供一份详尽的技术干货。
38 2
|
13天前
|
前端开发 Java Spring
探索Spring MVC:@Controller注解的全面解析
在Spring MVC框架中,`@Controller`注解是构建Web应用程序的基石之一。它不仅简化了控制器的定义,还提供了一种优雅的方式来处理HTTP请求。本文将全面解析`@Controller`注解,包括其定义、用法、以及在Spring MVC中的作用。
31 2
|
16天前
|
消息中间件 Java 数据库
解密Spring Boot:深入理解条件装配与条件注解
Spring Boot中的条件装配与条件注解提供了强大的工具,使得应用程序可以根据不同的条件动态装配Bean,从而实现灵活的配置和管理。通过合理使用这些条件注解,开发者可以根据实际需求动态调整应用的行为,提升代码的可维护性和可扩展性。希望本文能够帮助你深入理解Spring Boot中的条件装配与条件注解,在实际开发中更好地应用这些功能。
24 2
|
17天前
|
JSON Java 数据格式
springboot常用注解
@RestController :修饰类,该控制器会返回Json数据 @RequestMapping(“/path”) :修饰类,该控制器的请求路径 @Autowired : 修饰属性,按照类型进行依赖注入 @PathVariable : 修饰参数,将路径值映射到参数上 @ResponseBody :修饰方法,该方法会返回Json数据 @RequestBody(需要使用Post提交方式) :修饰参数,将Json数据封装到对应参数中 @Controller@Service@Compont: 将类注册到ioc容器
|
17天前
|
XML Java 数据格式
SpringBoot入门(8) - 开发中还有哪些常用注解
SpringBoot入门(8) - 开发中还有哪些常用注解
35 2

热门文章

最新文章