哈嘍,大家好,我是了不起。
無論呼叫介面的次數為一次或多次,介面的冪等性保證對相同資源的操作只會產生相同的結果。多次重複呼叫相同的介面請求應該具有與單次請求相同的結果,不能引起不一致性或副作用的發生。
今天我們利用人工智慧,創建了一個客製化註解,以防止介面在30秒內被多次請求,並用Redis作為快取。
話不多說,直接提問:
#等待數分鐘後。 。 。
1.建立自訂註解 其中包含介面保護時長,開啟防止重複提交保護等。
2.然後建立攔截器
這裡我們貼出攔截器的核心代碼:
@Overridepublic boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {if (handler instanceof HandlerMethod) {HandlerMethod handlerMethod = (HandlerMethod) handler;RepeatSubmit annotation = handlerMethod.getMethodAnnotation(RepeatSubmit.class);if (annotation != null && annotation.enable()) {String key = buildKey(request);if (StringUtils.hasText(redisTemplate.opsForValue().get(key))) {response.getWriter().write("repeat request, please try again later!");return false;} else {redisTemplate.opsForValue().set(key, Arrays.toString(request.getInputStream().readAllBytes()), annotation.timeout(), TimeUnit.SECONDS);}}}return true;} //创建redis 缓存keyprivate String buildKey(HttpServletRequest request) throws IOException, NoSuchAlgorithmException {String key = useRequestMD5 ? hashRequest(request) : request.getRequestURI();return "repeat-submit:" + key;} //对请求做hash运算private String hashRequest(HttpServletRequest request) throws IOException, NoSuchAlgorithmException {byte[] hashBytes = MessageDigest.getInstance("MD5").digest(request.getInputStream().readAllBytes());StringBuilder sb = new StringBuilder();for (byte b : hashBytes) {sb.append(String.format("%02x", b));}return sb.toString();}
3.註冊攔截器
最後給出的解釋與使用方法。
上面就是最關鍵的程式碼了。
下面我們接入Redis。最精簡的設定版本
spring:data:redis:host: 127.0.0.1 port: 6379
@RestControllerpublic class RepeatTestController {@RepeatSubmit@GetMapping("/hello/mono1")public Mono<string> mono(){return Mono.just("Hello Mono -Java North");}@RepeatSubmit@PostMapping ("/hello/mono1")public Mono<string> mono1(@RequestBody User user){return Mono.just("Hello Mono -Java North-"+user.getName());}}</string></string>
本地起一個Redis,然後啟動本地的SpringBoot專案進行測試,
本機介面測試:30秒內重複要求會需要直接被攔截
#Redis中快取的KEY如下:
相關程式碼在文章最後,需要的話可以白嫖哈!
下面問一下介面冪等性解決方案,
關於這個回答,大家覺得怎麼樣?
相關程式碼鏈接,歡迎來嫖:
https://www.php.cn/link/94c0915ab3bcbc61c1c61624dd6d7cd5
以上是今天用AI搞一個防止介面重複提交註解的詳細內容。更多資訊請關注PHP中文網其他相關文章!