防止表单重复提交

该博客介绍了一个使用Spring AOP和Redis实现的方法,用于防止HTTP请求的重复提交。通过定义`NoRepeatSubmit`注解,设置锁定时间,并在切面中检查Redis缓存来确保请求的独特性。当请求不存在于缓存中时,将其添加到Redis并继续执行,否则提示用户重复提交。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

相应的切面

@Slf4j
@Aspect
@Component
public class RepeatSubmitAspect {

    @Pointcut("@annotation(noRepeatSubmit)")
    public void pointCut(NoRepeatSubmit noRepeatSubmit) {
    }

    @Around("pointCut(noRepeatSubmit)")
    public ResultNoEncryptVo around(ProceedingJoinPoint pjp, NoRepeatSubmit noRepeatSubmit) throws Throwable {
        int lockSeconds = noRepeatSubmit.lockTime();

        ServletRequestAttributes requestAttributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        HttpServletRequest request = requestAttributes.getRequest();
        Assert.notNull(request, "request can not null");

        String token = request.getHeader("CQ-TOKEN");
        String path = request.getServletPath();
        String key = getKey(token, path);
        String s = RedisUtils.get(key);
        log.info("Set Redis = [{}]", key);

        if (s == null) {
            log.info("getRedisKey == null , key = [{}]", key);
            // 加入redis缓存
            RedisUtils.set(key,"datas");
            RedisUtils.expire(key,lockSeconds, TimeUnit.SECONDS);
            // 加入redis缓存
            pjp.proceed();

            return ResultNoEncryptVo.ok("你已提交成功");

        } else {
            // 缓存不为空,重复提交的请求
            log.info("重复提交, key = [{}]", key);
            return ResultNoEncryptVo.ok("亲,请不要重复提交哦");
        }

    }

    private String getKey(String token, String path) {
        return token + path;
    }


}

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface NoRepeatSubmit {

    /**
     * 设置请求锁定时间
     */
    int lockTime() default 3;

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值