赞
踩
通过在指定的接口处添加注解,实现根据指定的接口参数来防重复点击
说明#
=======
这里的重复点击是指在指定的时间段内多次点击按钮
技术方案#
=========
springboot + redis锁 + 注解
使用 feign client 进行请求测试
最终的使用实例#
============
1、根据接口收到 PathVariable 参数判断唯一
Copy/**
根据请求参数里的 PathVariable 里获取的变量进行接口级别防重复点击
@param testId 测试id
@param requestVo 请求参数
@return
@author daleyzou
*/
@PostMapping(“/test/{testId}”)
@NoRepeatSubmit(location = “thisIsTestLocation”, seconds = 6)
public RsVo thisIsTestLocation(@PathVariable Integer testId, @RequestBody RequestVo requestVo) throws Throwable {
// 睡眠 5 秒,模拟业务逻辑
Thread.sleep(5);
return RsVo.success(“test is return success”);
}
2、根据接口收到的 RequestBody 中指定变量名的值判断为一
Copy/**
根据请求参数里的 RequestBody 里获取指定名称的变量param5的值进行接口级别防重复点击
@param testId 测试id
@param requestVo 请求参数
@return
@author daleyzou
*/
@PostMapping(“/test/{testId}”)
@NoRepeatSubmit(location = “thisIsTestBody”, seconds = 6, argIndex = 1, name = “param5”)
public RsVo thisIsTestBody(@PathVariable Integer testId, @RequestBody RequestVo requestVo) throws Throwable {
// 睡眠 5 秒,模拟业务逻辑
Thread.sleep(5);
return RsVo.success(“test is return success”);
}
ps: jedis 2.9 和 springboot有各种兼容问题,无奈只有降低springboot的版本了
运行结果#
=========
Copy收到响应:{“succeeded”:true,“code”:500,“msg”:“操作过于频繁,请稍后重试”,“data”:null}
收到响应:{“succeeded”:true,“code”:500,“msg”:“操作过于频繁,请稍后重试”,“data”:null}
收到响应:{“succeeded”:true,“code”:500,“msg”:“操作过于频繁,请稍后重试”,“data”:null}
收到响应:{“succeeded”:true,“code”:200,“msg”:“success”,“data”:“test is return success”}
测试用例#
=========
Copypackage com.dalelyzou.preventrepeatsubmit.controller;
import com.dalelyzou.preventrepeatsubmit.PreventrepeatsubmitApplicationTests;
import com.dalelyzou.preventrepeatsubmit.service.AsyncFeginService;
import com.dalelyzou.preventrepeatsubmit.vo.RequestVo;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import java.io.IOException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
/**
TestControllerTest
@description 防重复点击测试类
@author daleyzou
@date 2020年09月28日 17:13
@version 1.3.1
*/
class TestControllerTest extends PreventrepeatsubmitApplicationTests {
@Autowired
AsyncFeginService asyncFeginService; @Test
public void thisIsTestLocation() throws IOException {
RequestVo requestVo = new RequestVo();
requestVo.setParam5(“random”);
ExecutorService executorService = Executors.newFixedThreadPool(4);
for (int i = 0; i <= 3; i++) {
executorService.execute(() -> { String kl = asyncFeginService.thisIsTestLocation(requestVo); System.err.println(“收到响应:” + kl);
}); } System.in.read(); } @Test
public void thisIsTestBody() throws IOException {
RequestVo requestVo = new RequestVo();
requestVo.setParam5(“special”);
ExecutorService executorService = Executors.newFixedThreadPool(4);
for (int i = 0; i <= 3; i++) {
executorService.execute(() -> { String kl = asyncFeginService.thisIsTestBody(requestVo); System.err.println(“收到响应:” + kl);
}); } System.in.read(); }}
定义一个注解#
===========
Copypackage com.dalelyzou.preventrepeatsubmit.aspect;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
NoRepeatSubmit
@description 重复点击的切面
@author daleyzou
@date 2020年09月23日 14:35
小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数初中级Java工程师,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年最新Java开发全套学习资料》送给大家,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频
如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注Java)
我将这三次阿里面试的题目全部分专题整理出来,并附带上详细的答案解析,生成了一份PDF文档
还有更多的Redis、MySQL、JVM、Kafka、微服务、Spring全家桶等学习笔记这里就不一一列举出来
第二个就是数据库的高频知识点与性能优化
[外链图片转存中…(img-02Di7KPW-1711155812262)]
[外链图片转存中…(img-LRCQTKa3-1711155812262)]
[外链图片转存中…(img-CiF4GdZP-1711155812263)]
还有更多的Redis、MySQL、JVM、Kafka、微服务、Spring全家桶等学习笔记这里就不一一列举出来
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。