如何spring-aop防范重复提交网络请求
发表时间:2025-11-15 来源:浏览器大全整理相关软件相关文章人气:
网页的本质就是超级文本标记语言,通过结合使用其他的Web技术(如:脚本语言、公共网关接口、组件等),可以创造出功能强大的网页。因而,超级文本标记语言是万维网(Web)编程的基础,也就是说万维网是建立在超文本基础之上的。超级文本标记语言之所以称为超文本标记语言,是因为文本中包含了所谓“超级链接”点。
具体原理很简单,通过spring-aop的环绕通知,请求开始时将请求参数转换校验是否已存在,已存在则报错,否则存储,请求完成后删除。
具体代码如下:
1、注释@interface
package com.yuntu.commons.intelligent.annotation;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;/**
* Created by niuzy on 2018-09-13.
*/@Target({ElementType.METHOD})@Retention(RetentionPolicy.RUNTIME)public @interface NotDuplicate {}2、spring切面和环绕通知
import com.yuntu.commons.ServiceException;import com.yuntu.commons.intelligent.ExceptionConstants;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.aspectj.lang.reflect.MethodSignature;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.stereotype.Component;import java.lang.reflect.Method;import java.util.Set;import java.util.concurrent.ConcurrentSkipListSet;/**
* Created by niuzy on 2018-09-13.
*/@Aspect@Componentpublic class NotDuplicateAop {
private Logger LOG = LoggerFactory.getLogger(NotDuplicateAop.class); private static final Set<String> KEY = new ConcurrentSkipListSet<>(); @Pointcut("@annotation(com.yuntu.commons.intelligent.annotation.NotDuplicate)") public void duplicate() {
} /**
* 对方法拦截后进行参数验证
* @param pjp
* @return
* @throws Throwable
*/
@Around("duplicate()") public Object duplicate(ProceedingJoinPoint pjp) throws Throwable {
MethodSignature msig = (MethodSignature) pjp.getSignature();
Method currentMethod = pjp.getTarget().getClass().getMethod(msig.getName(), msig.getParameterTypes()); //拼接签名
StringBuilder sb = new StringBuilder(currentMethod.toString());
Object[] args = pjp.getArgs(); for (Object object : args) { if(object != null){
sb.append(object.getClass().toString());
sb.append(object.toString());
}
}
String sign = sb.toString(); boolean success = KEY.add(sign); if(!success){ throw new ServiceException(ExceptionConstants.ILLEGAL_REQUEST_EXCEPTION,"该方法正在执行,不能重复请求");
} try { return pjp.proceed();
} finally {
KEY.remove(sign);
}
}
}3、使用:
在需要的方法上添加@NotDuplicate
相关推荐:
Spring管理MongoDB
Mongodb整合Spring示例
以上就是如何spring-aop防止重复提交网络请求的详细内容,更多请关注php中文网其它相关文章!
网站建设是一个广义的术语,涵盖了许多不同的技能和学科中所使用的生产和维护的网站。