這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)SpringBoot中怎么利用Sentinel實(shí)現(xiàn)接口流量控制,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站的開發(fā),更需要了解用戶,從用戶角度來建設(shè)網(wǎng)站,獲得較好的用戶體驗(yàn)。創(chuàng)新互聯(lián)多年互聯(lián)網(wǎng)經(jīng)驗(yàn),見的多,溝通容易、能幫助客戶提出的運(yùn)營建議。作為成都一家網(wǎng)絡(luò)公司,打造的就是網(wǎng)站建設(shè)產(chǎn)品直銷的概念。選擇創(chuàng)新互聯(lián),不只是建站,我們把建站作為產(chǎn)品,不斷的更新、完善,讓每位來訪用戶感受到浩方產(chǎn)品的價(jià)值服務(wù)。
首先我們來創(chuàng)建一個(gè)測試項(xiàng)目,這里初始化項(xiàng)目的url建議大家填寫阿里云的地址,會(huì)有驚喜?
http://start.aliyun.com
接下來就是常規(guī)操作,一路next,在下圖的位置稍微注意一下
說明:
同大家以前創(chuàng)建項(xiàng)目一樣,只需要在這里勾選Sentinel就可以啦?
項(xiàng)目創(chuàng)建好以后,我們發(fā)現(xiàn)pom文件中引入了下面的依賴
有的小伙伴看網(wǎng)上博客,也會(huì)有下面的方式,指定版本號(hào)
com.alibaba.cloud spring-cloud-starter-alibaba-sentinel 2.1.0.RELEASE
如果你使用我推薦的阿里云的Url,會(huì)發(fā)現(xiàn)Sentinel的版本號(hào)都定義父工程,Cloud的各個(gè)組件的兼容性就不要大家操心了
org.springframework.boot spring-boot-dependencies ${spring-boot.version} pom import com.alibaba.cloud spring-cloud-alibaba-dependencies ${spring-cloud-alibaba.version} pom import
打開項(xiàng)目配置文件,會(huì)發(fā)現(xiàn)它已經(jīng)為我們自動(dòng)加好了配置,真的超級(jí)方便?
server.port=8083 # 應(yīng)用名稱 spring.application.name=springcloud-sentinel # Sentinel 控制臺(tái)地址 spring.cloud.sentinel.transport.dashboard=localhost:8080 # 取消Sentinel控制臺(tái)懶加載 # 默認(rèn)情況下 Sentinel 會(huì)在客戶端首次調(diào)用的時(shí)候進(jìn)行初始化,開始向控制臺(tái)發(fā)送心跳包 # 配置 sentinel.eager=true 時(shí),取消Sentinel控制臺(tái)懶加載功能 spring.cloud.sentinel.eager=true # 如果有多套網(wǎng)絡(luò),又無法正確獲取本機(jī)IP,則需要使用下面的參數(shù)設(shè)置當(dāng)前機(jī)器可被外部訪問的IP地址,供admin控制臺(tái)使用 # spring.cloud.sentinel.transport.client-ip=# sentinel 配置 spring.application.name=frms spring.cloud.sentinel.transport.dashboard=localhost:8080 spring.cloud.sentinel.transport.heartbeat-interval-ms=500
官網(wǎng)提供的demo
package com.milo.sentinel; import com.alibaba.csp.sentinel.Entry; import com.alibaba.csp.sentinel.SphU; import com.alibaba.csp.sentinel.slots.block.BlockException; import com.alibaba.csp.sentinel.slots.block.RuleConstant; import com.alibaba.csp.sentinel.slots.block.flow.FlowRule; import com.alibaba.csp.sentinel.slots.block.flow.FlowRuleManager; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import java.util.ArrayList; import java.util.List; /** * 項(xiàng)目入口 * @author Milo Lee * @date 2021-3-20 19:07 * */ @SpringBootApplication public class SentinelApplication { public static void main(String[] args) { SpringApplication.run(SentinelApplication.class, args); // 配置規(guī)則. initFlowRules(); while (true) { // 1.5.0 版本開始可以直接利用 try-with-resources 特性 try (Entry entry = SphU.entry("HelloWorld")) { // 被保護(hù)的邏輯 Thread.sleep(300); System.out.println("hello world"); } catch (BlockException | InterruptedException ex) { // 處理被流控的邏輯 System.out.println("blocked!"); } } } private static void initFlowRules(){ Listrules = new ArrayList<>(); FlowRule rule = new FlowRule(); rule.setResource("HelloWorld"); rule.setGrade(RuleConstant.FLOW_GRADE_QPS); // Set limit QPS to 20. rule.setCount(20); rules.add(rule); FlowRuleManager.loadRules(rules); } }
注解式定義
@SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(ServiceApplication.class, args); } } @Service public class TestService { @SentinelResource(value = "sayHello") public String sayHello(String name) { return "Hello, " + name; } } @RestController public class TestController { @Autowired private TestService service; @GetMapping(value = "/hello/{name}") public String apiHello(@PathVariable String name) { return service.sayHello(name); } }
@SentinelResource 注解用來標(biāo)識(shí)資源是否被限流、降級(jí)。上述例子上該注解的屬性 sayHello 表示資源名。
java -Dserver.port=8080 -Dcsp.sentinel.dashboard.server=localhost:8080 -Dproject.name=sentinel-dashboard -jar sentinel-dashboard-1.8.1.jar
控制臺(tái)的操作我們用編程式定義的例子來演示,大家啟動(dòng)我們的服務(wù)
我們會(huì)發(fā)現(xiàn)除了sentinel-dashboard之外,多了一個(gè)milolee-sentinel,這個(gè)就是我們的服務(wù),它的名稱其實(shí)對應(yīng)我們配置文件定義的應(yīng)用名稱:
# 應(yīng)用名稱 spring.application.name=milolee-sentinel
點(diǎn)擊機(jī)器列表,這這里如果能發(fā)現(xiàn)你的機(jī)器,那就是成功上線了
給我們的資源HelloWorld配置流控規(guī)則,它的QPS(每秒請求數(shù))為1,如圖:
通過查看實(shí)時(shí)監(jiān)控,我們發(fā)現(xiàn)已經(jīng)生效
給我們的資源HelloWorld添加一個(gè)降級(jí)規(guī)則配置,如果QPS大于1,且平均響應(yīng)時(shí)間大于20ms,則接口下來接口在2秒鐘無法訪問,之后自動(dòng)恢復(fù)。
目前這些規(guī)則僅在內(nèi)存態(tài)生效,應(yīng)用重啟之后,該規(guī)則會(huì)丟失。后續(xù)文章我們會(huì)繼續(xù)學(xué)習(xí)動(dòng)態(tài)規(guī)則
上述就是小編為大家分享的SpringBoot中怎么利用Sentinel實(shí)現(xiàn)接口流量控制了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。