springboot反爬蟲組件kk-anti-reptile的使用方法
大傢好,我是為廣大程序員兄弟操碎瞭心的小編,每天推薦一個小工具/源碼,裝滿你的收藏夾,每天分享一個小技巧,讓你輕松節省開發效率,實現不加班不熬夜不掉頭發,是我的目標!
今天小編推薦一款反爬蟲組件叫kk-anti-reptile,一款可快速接入的反爬蟲、接口防盜刷spring boot stater組件。
1. 系統要求
- 基於spring-boot開發(spring-boot1.x, spring-boot2.x均可)
- 需要使用redis
2. 工作流程
kk-anti-reptile使用基於Servlet規范的的Filter對請求進行過濾,在其內部通過spring-boot的擴展點機制,實例化一個Filter,並註入到Spring容器FilterRegistrationBean中,通過Spring註入到Servlet容器中,從而實現對請求的過濾。
在kk-anti-reptile的過濾Filter內部,又通過責任鏈模式,將各種不同的過濾規則織入,並提供抽象接口,可由調用方進行規則擴展。
Filter調用則鏈進行請求過濾,如過濾不通過,則攔截請求,返回狀態碼509,並輸出驗證碼輸入頁面,輸出驗證碼正確後,調用過濾規則鏈對規則進行重置。
目前規則鏈中有如下兩個規則
ip-rule
ip-rule通過時間窗口統計當前時間窗口內請求數,小於規定的最大請求數則可通過,否則不通過。時間窗口、最大請求數、ip白名單等均可配置
ua-rule
ua-rule通過判斷請求攜帶的User-Agent,得到操作系統、設備信息、瀏覽器信息等,可配置各種維度對請求進行過濾
3. 接入使用
後端接入非常簡單,隻需要引用kk-anti-reptile的maven依賴,並配置啟用kk-anti-reptile即可。
加入maven依賴
<dependency> <groupId>cn.keking.project</groupId> <artifactId>kk-anti-reptile</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency>
4.配置啟用 kk-anti-reptile
anti.reptile.manager.enabled=true
前端需要在統一發送請求的ajax處加入攔截,攔截到請求返回狀態碼509後彈出一個新頁面,並把響應內容轉出到頁面中,然後向頁面中傳入後端接口baseUrl參數即可,以使用axios請求為例:
import axios from 'axios'; import {baseUrl} from './config'; axios.interceptors.response.use( data => { return data; }, error => { if (error.response.status === 509) { let html = error.response.data; let verifyWindow = window.open("","_blank","height=400,width=560"); verifyWindow.document.write(html); verifyWindow.document.getElementById("baseUrl").value = baseUrl; } } ); export default axios;
5. 註意
apollo-client需啟用bootstrap
使用apollo配置中心的用戶,由於組件內部用到@ConditionalOnProperty,要在application.properties/bootstrap.properties中加入如下樣例配置,(apollo-client需要0.10.0及以上版本)
apollo.bootstrap.enabled = true
需要有Redisson連接
如果項目中有用到Redisson,kk-anti-reptile會自動獲取RedissonClient實例對象; 如果沒用到,需要在配置文件加入如下Redisson連接相關配置
spring.redisson.address=redis://192.168.1.204:6379 spring.redisson.password=xxx
6.命中規則後
命中爬蟲和防盜刷規則後,會阻斷請求,並生成接除阻斷的驗證碼,驗證碼有多種組合方式,如果客戶端可以正確輸入驗證碼,則可以繼續訪問
7.結尾
以上就是springboot反爬蟲組件kk-anti-reptile的使用方法的詳細內容,更多關於springboot反爬蟲組件kk-anti-reptile的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- spring boot微服務場景下apollo加載過程解析
- SpringBoot整合Apollo配置中心快速使用詳解
- 使用Springboot整合Apollo配置中心
- 集成apollo動態日志取締logback-spring.xml配置
- SpringBoot擴展外部化配置的原理解析