栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

redisson防止重复提交

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

redisson防止重复提交

 生成订单的api controller:

package com.example.demo.controller;

import com.example.demo.common.aop.NotRepeatSubmit;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@Slf4j
@RestController
@RequestMapping("/commit")
public class CommitController {


    @GetMapping("/order")
    @NotRepeatSubmit(value = 3000L)
    public void order() throws InterruptedException {
        log.info("生成订单ok");
        Thread.sleep(10000);
    }
}

 创建注解NotRepeatSubmit :

package com.example.demo.common.aop;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.TYPE,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface NotRepeatSubmit {
    long value();
}

 实现类:

package com.example.demo.common.aop;

import lombok.extern.slf4j.Slf4j;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.redisson.api.RLock;
import org.redisson.api.RedissonClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import java.util.concurrent.TimeUnit;

@Slf4j
@Component
@Aspect
public class NotRepeatSubmitConfig {
    @Autowired
    private RedissonClient redissonClient;


    @Pointcut("@within(notRepeatSubmit)||@annotation(notRepeatSubmit)")
    public void pointcut(NotRepeatSubmit notRepeatSubmit) {

    }

    @Around(value = "pointcut(notRepeatSubmit)")
    public Object around(ProceedingJoinPoint proceedingJoinPoint, NotRepeatSubmit notRepeatSubmit) throws Throwable {
        log.info("提交之前---");
        Object result = null;
        long leaseTime = notRepeatSubmit.value();
        log.info("leaseTime:"+leaseTime);

        // 设置锁定资源名称,accountUriLock改为userid+uri作为标识,作为测试写死
        String accountUriLockKey = "accountUriLock";

        RLock accountUriLock = redissonClient.getLock(accountUriLockKey);
        boolean tryLock;

        //尝试获取分布式锁
        tryLock = accountUriLock.tryLock(-1, leaseTime, TimeUnit.MILLISECONDS);
        log.info("tryLock:"+tryLock);
        if (tryLock) {
            try {
                log.info("正常提交:");
                result = proceedingJoinPoint.proceed();
            }catch (Exception e) {
                log.info("主程序异常:"+e);
                throw new Exception(e);
            }
        }else {
            log.info("重复提交:"+accountUriLockKey);
        }
        log.info("提交之后---");
        return result;

    }

}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/697267.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号