亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java注解怎么基于Redission實現分布式鎖

發布時間:2021-03-05 11:19:45 來源:億速云 閱讀:425 作者:小新 欄目:編程語言

這篇文章主要介紹Java注解怎么基于Redission實現分布式鎖,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

1、定義注解類

@Target({ ElementType.METHOD })@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface DistributedLock {  //鎖名稱  String lockName() default "";  //釋放時間  long releaseTime() default 5*1000;  //時間單位  TimeUnit timeUnit() default TimeUnit.MILLISECONDS;}

2、定義切面攔截 DistributedLock 注解

@Aspect@Component@Slf4jpublic class DistributedLockAspect {  @Autowired  private RedissonClient redissonClient;   //這里需要修改對應的包名  @Pointcut("@annotation(com.utils.annotation.DistributedLock)")  public void RlockAspect() {  }  @Around("RlockAspect()")  public Object arround(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {    Object object = null;    RLock lock = null;    log.info("rlockAspect start ");    try {      DistributedLock rlockInfo = getRlockInfo(proceedingJoinPoint);      String lockKey = getLocalKey(proceedingJoinPoint, rlockInfo);      lock = redissonClient.getLock(lockKey);      if (lock != null) {        final boolean status = lock.tryLock(rlockInfo.releaseTime(), rlockInfo.timeUnit());        if (status) {          object = proceedingJoinPoint.proceed();        }      } else {        log.info("未獲取到鎖:{}", lockKey);      }    } finally {      // 當前線程獲取到鎖再釋放鎖      if (lock != null && lock.isHeldByCurrentThread()) {        lock.unlock();      }    }    return object;  }  public DistributedLock getRlockInfo(ProceedingJoinPoint proceedingJoinPoint) {    MethodSignature methodSignature = (MethodSignature) proceedingJoinPoint.getSignature();    return methodSignature.getMethod().getAnnotation(DistributedLock.class);  }  /**   * 獲取redis lock key   *   * @param proceedingJoinPoint   * @return   */  public String getLocalKey(ProceedingJoinPoint proceedingJoinPoint, DistributedLock rlockInfo) {    StringBuilder localKey = new StringBuilder("Rlock");    final Object[] args = proceedingJoinPoint.getArgs();    String businessNo = "";    // 如果沒有設置鎖值    if (StringUtils.isNotEmpty(rlockInfo.lockName())) {      businessNo = rlockInfo.lockName();    } else {      MethodSignature methodSignature = (MethodSignature) proceedingJoinPoint.getSignature();      Class[] parameters = methodSignature.getParameterTypes();      String methodName = methodSignature.getMethod().getName();      if (parameters != null) {        for (int i = 0; i < parameters.length; i++) {          Class parameter = parameters[i];          if (parameter.getSimpleName().equals("NDevice")) {            NDevice de = (NDevice) args[i];            businessNo = de.getUuid() + methodName;          }          if (parameter.getSimpleName().equals("FrameBean")) {            FrameBean de = (FrameBean) args[i];            businessNo = de.getColumn1() + methodName;          }        }        // 如果沒有獲取到業務編號,則使用方法簽名        if (StringUtils.isEmpty(businessNo)) {          businessNo = methodName;        }      }    }    return businessNo;  }}

3、使用方法:在需要用分布式鎖的方法上面加 @DistributedLock 注解即可

以上是“Java注解怎么基于Redission實現分布式鎖”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

合川市| 怀柔区| 禄劝| 郧西县| 太康县| 清远市| 沂南县| 宁蒗| 永仁县| 松溪县| 闻喜县| 维西| 门头沟区| 宁安市| 泸溪县| 大荔县| 宁津县| 罗田县| 扎囊县| 搜索| 五台县| 盘山县| 哈尔滨市| 蕲春县| 北宁市| 榆社县| 本溪市| 岗巴县| 五家渠市| 贵港市| 湘阴县| 理塘县| 枝江市| 徐州市| 丁青县| 大余县| 柯坪县| 盐城市| 遵义县| 乌拉特后旗| 格尔木市|