0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

如何解決Spring Boot接口防刷

Android編程精選 ? 來源:CSDN博客 ? 作者: CS打贏你 ? 2021-09-13 09:19 ? 次閱讀

一,技術(shù)要點:Spring Boot的基本知識,Redis基本操作,首先是寫一個注解類:

import java.lang.annotation.Retention;

import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Retention(RUNTIME)

@Target(METHOD)

public @interface AccessLimit {

int seconds();

int maxCount();

boolean needLogin()default true;

}

接著就是在Interceptor攔截器中實現(xiàn):

import com.alibaba.fastjson.JSON;

import com.example.demo.action.AccessLimit;

import com.example.demo.redis.RedisService;

import com.example.demo.result.CodeMsg;

import com.example.demo.result.Result;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Component;

import org.springframework.web.method.HandlerMethod;

import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import java.io.OutputStream;

@Componentpublic class FangshuaInterceptor extends HandlerInterceptorAdapter {

@Autowired

private RedisService redisService;

@Override

public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {

//判斷請求是否屬于方法的請求

if(handler instanceof HandlerMethod){

HandlerMethod hm = (HandlerMethod) handler;

//獲取方法中的注解,看是否有該注解

AccessLimit accessLimit = hm.getMethodAnnotation(AccessLimit.class);

if(accessLimit == null){

return true;

}

int seconds = accessLimit.seconds();

int maxCount = accessLimit.maxCount();

boolean login = accessLimit.needLogin();

String key = request.getRequestURI();

//如果需要登錄

if(login){

//獲取登錄的session進行判斷

//。..。.

key+=“”+“1”; //這里假設(shè)用戶是1,項目中是動態(tài)獲取的userId

}

//從redis中獲取用戶訪問的次數(shù)

AccessKey ak = AccessKey.withExpire(seconds);

Integer count = redisService.get(ak,key,Integer.class);

if(count == null){

//第一次訪問

redisService.set(ak,key,1);

}else if(count 《 maxCount){

//加1

redisService.incr(ak,key);

}else{

//超出訪問次數(shù)

render(response,CodeMsg.ACCESS_LIMIT_REACHED); //這里的CodeMsg是一個返回參數(shù)

return false;

}

}

return true;

}

private void render(HttpServletResponse response, CodeMsg cm)throws Exception {

response.setContentType(“application/json;charset=UTF-8”);

OutputStream out = response.getOutputStream();

String str = JSON.toJSONString(Result.error(cm));

out.write(str.getBytes(“UTF-8”));

out.flush();

out.close();

}

}

再把Interceptor注冊到springboot中

import com.example.demo.ExceptionHander.FangshuaInterceptor;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.context.annotation.Configuration;

import org.springframework.web.servlet.config.annotation.InterceptorRegistry;

import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

@Configurationpublic class WebConfig extends WebMvcConfigurerAdapter {

@Autowired

private FangshuaInterceptor interceptor;

@Override

public void addInterceptors(InterceptorRegistry registry) {

registry.addInterceptor(interceptor);

}

}

接著在Controller中加入注解

import com.example.demo.result.Result;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.ResponseBody;

@Controllerpublic class FangshuaController {

@AccessLimit(seconds=5, maxCount=5, needLogin=true)

@RequestMapping(“/fangshua”)

@ResponseBody

public Result《String》 fangshua(){

return Result.success(“請求成功”);

}

責(zé)任編輯:haq

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 接口
    +關(guān)注

    關(guān)注

    33

    文章

    8447

    瀏覽量

    150722
  • Sprint
    +關(guān)注

    關(guān)注

    0

    文章

    86

    瀏覽量

    15101

原文標題:一個注解搞定 Spring Boot 接口防刷

文章出處:【微信號:AndroidPush,微信公眾號:Android編程精選】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。

收藏 人收藏

    評論

    相關(guān)推薦

    Spring Cloud Gateway網(wǎng)關(guān)框架

    SpringCloud Gateway功能特征如下: (1) 基于Spring Framework 5, Project Reactor 和 Spring Boot 2.0 進行構(gòu)建; (2) 動態(tài)路由:能夠匹配任何請求屬性;
    的頭像 發(fā)表于 08-22 09:58 ?413次閱讀
    <b class='flag-5'>Spring</b> Cloud Gateway網(wǎng)關(guān)框架

    vue+spring boot人員定位系統(tǒng)源碼,實現(xiàn)實時定位、智慧調(diào)度、軌跡追蹤

    、機具、物料上定位標簽回傳的位置信息數(shù)據(jù),采用多維定位模式,精確定位人、機具、物料的實時位置,實現(xiàn)實時定位、物料標簽配置、智慧調(diào)度、軌跡追蹤、工時統(tǒng)計、區(qū)域物料統(tǒng)計、電子圍欄等應(yīng)用功能。 技術(shù)架構(gòu):java+ spring boot+ v
    的頭像 發(fā)表于 08-08 14:27 ?509次閱讀
    vue+<b class='flag-5'>spring</b> <b class='flag-5'>boot</b>人員定位系統(tǒng)源碼,實現(xiàn)實時定位、智慧調(diào)度、軌跡追蹤

    使用Spring Boot 3.2虛擬線程搭建靜態(tài)文件服務(wù)器

    Spring Boot 3.2 于 2023 年 11 月大張旗鼓地發(fā)布,標志著 Java 開發(fā)領(lǐng)域的一個關(guān)鍵時刻。這一突破性的版本引入了一系列革命性的功能。
    的頭像 發(fā)表于 01-09 09:34 ?1071次閱讀
    使用<b class='flag-5'>Spring</b> <b class='flag-5'>Boot</b> 3.2虛擬線程搭建靜態(tài)文件服務(wù)器

    Spring事務(wù)失效的十種常見場景

    Spring的聲明式事務(wù)功能更是提供了極其方便的事務(wù)配置方式,配合Spring Boot的自動配置,大多數(shù)Spring Boot項目只需要在
    的頭像 發(fā)表于 12-11 15:03 ?835次閱讀

    【飛騰派4G版免費試用】Spring Boot和飛騰派融合構(gòu)建的農(nóng)業(yè)物聯(lián)網(wǎng)系統(tǒng)-環(huán)境搭建篇

    ntpdate-u 120.25.108.11) 7.安裝MySQL服務(wù)器(sudo apt install mysql -server) 遇到問題: 1測試中板子TF卡處發(fā)熱較為嚴重。 下期更新: Spring Boot和飛騰派融合構(gòu)建的農(nóng)業(yè)物聯(lián)網(wǎng)系統(tǒng)-實現(xiàn)篇1
    發(fā)表于 12-11 15:00

    dubbo和spring cloud區(qū)別

    包括了服務(wù)提供者、注冊中心、服務(wù)消費者等角色。 Spring Cloud是基于Spring Boot的微服務(wù)
    的頭像 發(fā)表于 12-04 14:47 ?1548次閱讀

    如何在Spring Boot應(yīng)用程序中整合ZXing庫

    在數(shù)字化時代,二維碼已經(jīng)成為了信息交流的一種常見方式。它們被廣泛用于各種應(yīng)用,從產(chǎn)品標簽到活動傳單,以及電子支付。本文將向您展示如何在Spring Boot應(yīng)用程序中整合ZXing庫,以創(chuàng)建和解析QR碼。
    的頭像 發(fā)表于 12-03 17:39 ?1048次閱讀

    springboot的優(yōu)點與缺點

    Spring Boot是一個輕量級的Java開發(fā)框架,它基于Spring Framework構(gòu)建,旨在簡化Spring應(yīng)用的開發(fā)和部署。Spring
    的頭像 發(fā)表于 12-03 15:29 ?1398次閱讀

    springboot框架主要用來做什么

    Spring Boot是一個用來簡化Spring應(yīng)用開發(fā)的框架,它使得開發(fā)人員能夠快速搭建起一個獨立的、可執(zhí)行的、基于Spring的應(yīng)用程序。Spr
    的頭像 發(fā)表于 12-03 15:14 ?1460次閱讀

    springboot自動配置的原理介紹

    Spring Boot是一個開源的Java框架,用于構(gòu)建獨立的、基于微服務(wù)的應(yīng)用程序。它的最大特點是自動配置,能夠根據(jù)應(yīng)用程序的依賴庫和配置文件,智能地自動配置應(yīng)用程序的各個組件。 在Spring
    的頭像 發(fā)表于 12-03 15:12 ?873次閱讀

    Spring MVC的工作原理

    Spring MVC是一種基于Java的Web應(yīng)用程序框架,它采用了Model-View-Controller(MVC)設(shè)計模式來分離應(yīng)用程序的不同方面。Spring MVC的工作原理涉及多個關(guān)鍵
    的頭像 發(fā)表于 12-03 11:49 ?726次閱讀

    Spring Boot 3.2支持虛擬線程和原生鏡像

    Spring Boot 3.2 前幾日發(fā)布,讓我們用 Java 21、GraalVM 和虛擬線程來嘗試一下。
    的頭像 發(fā)表于 11-30 16:22 ?671次閱讀

    springboot技術(shù)特點

    Spring Boot是一個用于構(gòu)建微服務(wù)的Java框架,具有許多特點和優(yōu)勢。在這篇文章中,我將詳細介紹Spring Boot的技術(shù)特點。 簡化配置:
    的頭像 發(fā)表于 11-22 15:13 ?537次閱讀

    spring分布式框架有哪些

    Spring分布式框架。 Spring Cloud Spring Cloud是基于Spring Boot的分布式開發(fā)工具包。它提供了多個子
    的頭像 發(fā)表于 11-16 10:58 ?735次閱讀

    Spring布能用來搭建基礎(chǔ)架構(gòu)嗎

    Spring Boot 是一個用于簡化 Spring 應(yīng)用程序開發(fā)的框架,它利用 Spring 框架的強大功能,使得基礎(chǔ)架構(gòu)的搭建變得更加簡單、輕量級、易于維護。在本文中,我們將詳細討
    的頭像 發(fā)表于 11-16 10:56 ?362次閱讀