Java 处理重复提交问题

打印 上一主题 下一主题

主题 985|帖子 985|积分 2955

1、定义一个接口用来控制限制的时间
  1. package org.jeecg.common.aspect.annotation;
  2. import java.lang.annotation.Documented;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Inherited;
  5. import java.lang.annotation.Retention;
  6. import java.lang.annotation.RetentionPolicy;
  7. import java.lang.annotation.Target;
  8. /**
  9. * @author 作者 :Tring
  10. * @version 创建时间:2022年5月10日 下午6:25:17
  11. * 类说明 处理重复提交问题
  12. */
  13. @Inherited
  14. @Target(ElementType.METHOD)
  15. @Retention(RetentionPolicy.RUNTIME)
  16. @Documented
  17. public @interface NoRepeatSubmit {
  18.     /**
  19.      * 默认1s钟以内算重复提交
  20.      * @return
  21.      */
  22.     long timeout() default 1;
  23.    
  24. }
复制代码
 
2、配置切面拦截所有请求
  1. package org.jeecg.common.aspect;
  2. import java.lang.reflect.Method;
  3. import java.util.concurrent.TimeUnit;
  4. import javax.servlet.http.HttpServletRequest;
  5. import org.aspectj.lang.ProceedingJoinPoint;
  6. import org.aspectj.lang.annotation.Around;
  7. import org.aspectj.lang.annotation.Aspect;
  8. import org.aspectj.lang.annotation.Pointcut;
  9. import org.aspectj.lang.reflect.MethodSignature;
  10. import org.jeecg.common.api.vo.Result;
  11. import org.jeecg.common.aspect.annotation.NoRepeatSubmit;
  12. import org.jeecg.common.constant.PublicHeaderParameter;
  13. import org.jeecg.common.util.RedisUtil;
  14. import org.springframework.beans.factory.annotation.Autowired;
  15. import org.springframework.stereotype.Component;
  16. import org.springframework.web.context.request.RequestContextHolder;
  17. import org.springframework.web.context.request.ServletRequestAttributes;
  18. import me.zhyd.oauth.utils.IpUtils;
  19. /**
  20. * @author 作者 :Tring
  21. * @version 创建时间:2022年5月10日 下午6:26:36
  22. *
  23. * 类说明 aop切面注解控制指定接口不能重复提交
  24. * 实现原理 请求拦截,通过IP+token+请求地址为key存Redis,Redis若存在则弹出异常
  25. * 使用例子 在想要拦截的接口上面加入@NoRepeatSubmit自定义注解即系
  26. */
  27. @Aspect
  28. @Component
  29. public class NoRepeatSubmitAop {
  30.    
  31.     @Autowired
  32.     private RedisUtil redisService;
  33.     /**
  34.      * 切入点
  35.      */
  36.     @Pointcut("@annotation(org.jeecg.common.aspect.annotation.NoRepeatSubmit)")
  37.     public void pt() {
  38.     }
  39.     @Around("pt()")
  40.     public Object arround(ProceedingJoinPoint joinPoint) throws Throwable {
  41.         ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
  42.         assert attributes != null;
  43.         HttpServletRequest request = attributes.getRequest();
  44.         
  45.         // 获取注解
  46.         MethodSignature signature = (MethodSignature) joinPoint.getSignature();
  47.         Method method = signature.getMethod();
  48.         NoRepeatSubmit annotation = method.getAnnotation(NoRepeatSubmit.class);
  49.         
  50.         //获取请求IP
  51.         String IP = IpUtils.getLocalIp();
  52.         
  53.         //获取token
  54.         String token = request.getHeader(PublicHeaderParameter.X_ACCESS_TOKEN);
  55.         
  56.         //这里是唯一标识 根据情况而定
  57.         String key = IP + "-" + token + "-" + request.getServletPath();
  58.         // 如果缓存中有这个url视为重复提交
  59.         if (!redisService.hasKey(key)) {
  60.             //通过,执行下一步
  61.             Object o = joinPoint.proceed();
  62.             //然后存入redis 并且设置1s倒计时
  63.             redisService.set(key, 0, annotation.timeout(), TimeUnit.SECONDS);
  64.             //返回结果
  65.             return o;
  66.         } else {
  67.             return Result.error(500, "请勿重复提交或者操作过于频繁!");
  68.         }
  69.     }
  70.    
  71. }
复制代码
 
3、在需要加限制重复操作的地方加上@NoRepeatSubmit 注解
 
  1. /**
  2.      * 用户投票
  3.      */
  4.     @RequestMapping(value = "/setPollReply/{version}", method = RequestMethod.POST)
  5.     @ApiVersion(2)
  6.     @NoRepeatSubmit
  7.     public Result<?> setPollReply( HttpServletRequest request,@RequestBody EbCorporatePollReply PollReply) {
  8.         return pollCampaignService.setPollReply(request,PollReply);
  9.     }
复制代码
 

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
回复

使用道具 举报

0 个回复

正序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

大号在练葵花宝典

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表