国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 網(wǎng)站 > 幫助中心 > 正文

spring boot 防止重復(fù)提交實(shí)現(xiàn)方法詳解

2024-07-09 22:41:12
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

本文實(shí)例講述了spring boot 防止重復(fù)提交實(shí)現(xiàn)方法。分享給大家供大家參考,具體如下:

服務(wù)器端實(shí)現(xiàn)方案:同一客戶(hù)端在2秒內(nèi)對(duì)同一URL的提交視為重復(fù)提交

上代碼吧

pom.xml

<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>springboot-repeat-submit</artifactId> <version>1.0</version> <packaging>jar</packaging> <parent>  <groupId>org.springframework.boot</groupId>  <artifactId>spring-boot-starter-parent</artifactId>  <version>2.0.4.RELEASE</version>  <relativePath/> <!-- lookup parent from repository --> </parent> <properties>  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>  <java.version>1.8</java.version> </properties> <dependencies>  <dependency>   <groupId>org.springframework.boot</groupId>   <artifactId>spring-boot-starter-web</artifactId>  </dependency>  <dependency>   <groupId>org.springframework.boot</groupId>   <artifactId>spring-boot-starter-aop</artifactId>  </dependency>  <dependency>   <groupId>com.google.guava</groupId>   <artifactId>guava</artifactId>   <version>24.0-jre</version>  </dependency> </dependencies> <build>  <plugins>   <plugin>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-maven-plugin</artifactId>   </plugin>  </plugins> </build></project>

Application.java

package com;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;/** * @author www.gaozz.club * @功能描述 防重復(fù)提交 * @date 2018-08-26 */@SpringBootApplicationpublic class Application { public static void main(String[] args) {  SpringApplication.run(Application.class, args); }}

自定義注解NoRepeatSubmit.java

package com.common;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;@Target(ElementType.METHOD) // 作用到方法上@Retention(RetentionPolicy.RUNTIME) // 運(yùn)行時(shí)有效/** * @功能描述 防止重復(fù)提交標(biāo)記注解 * @author www.gaozz.club * @date 2018-08-26 */public @interface NoRepeatSubmit {}

aop解析注解NoRepeatSubmitAop.java

package com.common;import javax.servlet.http.HttpServletRequest;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;import org.aspectj.lang.ProceedingJoinPoint;import org.aspectj.lang.annotation.Around;import org.aspectj.lang.annotation.Aspect;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Component;import org.springframework.web.context.request.RequestContextHolder;import org.springframework.web.context.request.ServletRequestAttributes;import com.google.common.cache.Cache;@Aspect@Component/** * @功能描述 aop解析注解 * @author www.gaozz.club * @date 2018-08-26 */public class NoRepeatSubmitAop { private Log logger = LogFactory.getLog(getClass()); @Autowired private Cache<String, Integer> cache; @Around("execution(* com.example..*Controller.*(..)) && @annotation(nrs)") public Object arround(ProceedingJoinPoint pjp, NoRepeatSubmit nrs) {  try {   ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();   String sessionId = RequestContextHolder.getRequestAttributes().getSessionId();   HttpServletRequest request = attributes.getRequest();   String key = sessionId + "-" + request.getServletPath();   if (cache.getIfPresent(key) == null) {// 如果緩存中有這個(gè)url視為重復(fù)提交    Object o = pjp.proceed();    cache.put(key, 0);    return o;   } else {    logger.error("重復(fù)提交");    return null;   }  } catch (Throwable e) {   e.printStackTrace();   logger.error("驗(yàn)證重復(fù)提交時(shí)出現(xiàn)未知異常!");   return "{/"code/":-889,/"message/":/"驗(yàn)證重復(fù)提交時(shí)出現(xiàn)未知異常!/"}";  } }}
發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 福贡县| 克拉玛依市| 枣庄市| 驻马店市| 宾阳县| 清河县| 娄烦县| 交口县| 江津市| 拉萨市| 门头沟区| 秭归县| 湖南省| 稻城县| 新源县| 东乌珠穆沁旗| 崇文区| 河北省| 绥滨县| 和政县| 浪卡子县| 饶平县| 遂昌县| 陆良县| 兴国县| 涟源市| 乐昌市| 诸城市| 长葛市| 紫金县| 阳江市| 新蔡县| 南阳市| 五台县| 云龙县| 石景山区| 新晃| 介休市| 乐平市| 合作市| 弥渡县|