前言
專注于為中小企業(yè)提供做網(wǎng)站、成都做網(wǎng)站服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)興寧免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上千多家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
SpringCloud 是微服務(wù)中的翹楚,最佳的落地方案。
SpringCloud 中的 Hystrix 組件可以實(shí)現(xiàn)熔斷,而在實(shí)際情況中,一般還需要直觀地看到各個(gè)服務(wù)的調(diào)用情況,
這時(shí),就用到了 SpringCloud 另一個(gè)組件:Hystrix Dashboard。
Hystrix Dashboard 是一款針對(duì)于 Hystrix 進(jìn)行實(shí)時(shí)監(jiān)控的工具,還提供了友好的圖形化界面。
源碼
GitHub地址:https://github.com/intomylife/SpringCloud
開發(fā)工具
IntelliJ IDEA
正文
commons 工程
commons 工程 - POM 文件
<?xml version="1.0" encoding="UTF-8"?>4.0.0 com.zwc springcloud-dashboard-commons 1.0 springcloud-dashboard-commons 公用工程 jar UTF-8 1.8 Cairo-SR3 Finchley.RELEASE io.spring.platform platform-bom ${platform-bom.version} pom import org.springframework.cloud spring-cloud-dependencies ${spring-cloud-dependencies.version} pom import org.springframework.boot spring-boot-maven-plugin
配置一些共用依賴
commons 工程 - 項(xiàng)目結(jié)構(gòu)
service 工程
① 此工程下有三個(gè)模塊:一個(gè)注冊中心以及服務(wù) A、B
② A 提供服務(wù)并且調(diào)用服務(wù) B 以及 B 提供服務(wù)
registry-service(注冊中心)
registry-service - POM 文件
<?xml version="1.0" encoding="UTF-8"?>4.0.0 com.zwc springcloud-dashboard-service 1.0 com.zwc springcloud-dashboard-registry-service 1.0 springcloud-dashboard-registry-service 注冊中心 jar com.zwc springcloud-dashboard-commons 1.0 org.springframework.cloud spring-cloud-starter-netflix-eureka-server org.springframework.boot spring-boot-maven-plugin
主要是加入 spring-cloud-starter-netflix-eureka-server 依賴
registry-service - application.yml 配置文件
# 端口 server: port: 8761 # 應(yīng)用名稱 spring: application: name: eureka-server eureka: instance: # 使用 ip 代替實(shí)例名 prefer-ip-address: true # 實(shí)例的主機(jī)名 hostname: ${spring.cloud.client.ip-address} # 實(shí)例的 ID 規(guī)則 instance-id: ${spring.cloud.client.ip-address}:${spring.application.name}:${server.port} client: # 是否向注冊中心注冊自己 registerWithEureka: false # 是否向注冊中心獲取注冊信息 fetchRegistry: false serviceUrl: # 注冊中心地址 defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
這里使用了默認(rèn)的 8761 端口,當(dāng)然也可以更改,不過在發(fā)現(xiàn)調(diào)用服務(wù)端的注冊中心地址端口要與它一致
registry-service - 啟動(dòng)類
package com.zwc; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @SpringBootApplication @EnableEurekaServer public class SpringcloudDashboardRegistryServiceApplication { public static void main(String[] args) { SpringApplication.run(SpringcloudDashboardRegistryServiceApplication.class, args); } }
在啟動(dòng)類中添加 @EnableEurekaServer 注解表示此工程是注冊中心registry-service - 啟動(dòng)項(xiàng)目
. 項(xiàng)目啟動(dòng)成功后訪問 http://localhost:8761/ 即可看到 eureka-server 主頁面
服務(wù)工程 A(提供者和消費(fèi)者)
服務(wù)工程 A - POM 文件
<?xml version="1.0" encoding="UTF-8"?>4.0.0 com.zwc springcloud-dashboard-a-service 1.0 com.zwc springcloud-dashboard-a-service-core 1.0 springcloud-dashboard-a-service-core 服務(wù)工程 - A 核心 jar com.zwc springcloud-dashboard-commons 1.0 com.zwc springcloud-dashboard-a-service-api 1.0 org.springframework.cloud spring-cloud-starter-netflix-eureka-client org.springframework.cloud spring-cloud-starter-openfeign org.springframework.boot spring-boot-starter-actuator org.springframework.cloud spring-cloud-starter-netflix-hystrix org.springframework.cloud spring-cloud-starter-netflix-hystrix-dashboard org.springframework.boot spring-boot-maven-plugin
服務(wù)工程 A - application.yml 配置文件
# 端口 server: port: 8090 # 應(yīng)用名稱 spring: application: name: dashboard-a eureka: instance: # 使用 ip 代替實(shí)例名 prefer-ip-address: true # 實(shí)例的主機(jī)名 hostname: ${spring.cloud.client.ip-address} # 實(shí)例的 ID 規(guī)則 instance-id: ${spring.cloud.client.ip-address}:${spring.application.name}:${server.port} client: serviceUrl: # 注冊中心地址 defaultZone: http://${eureka.instance.hostname}:8761/eureka/ management: endpoints: web: exposure: # 開啟監(jiān)控端點(diǎn) include: hystrix.stream base-path: /
服務(wù)工程 A - application.properties(注意)
# 開啟斷路器 feign.hystrix.enabled=true
服務(wù)工程 A - bootstrap.yml(注意)
feign: hystrix: # 開啟斷路器 enabled: true
服務(wù)工程 A - controller 前端控制器(提供服務(wù))
package com.zwc.a.controller; import org.springframework.beans.factory.annotation.Value; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /* * @ClassName ASayHelloController * @Desc TODO Say Hello * @Date 2019/5/20 23:24 * @Version 1.0 */ @RestController public class ASayHelloController { /* * @ClassName ASayHelloController * @Desc TODO 讀取配置文件中的端口 * @Date 2019/5/20 23:24 * @Version 1.0 */ @Value("${server.port}") private String port; /* * @ClassName ASayHelloController * @Desc TODO Say Hello * @Date 2019/5/20 23:24 * @Version 1.0 */ @RequestMapping("/a") public String a(){ return "Hello!I'm a. port:" + port; } }
提供一個(gè)服務(wù):輸出 Hello 和端口
服務(wù)工程 A - 服務(wù)調(diào)用
package com.zwc.a.api.feign; import com.zwc.a.api.impl.FeignApiFallBack; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.RequestMapping; /* * @ClassName FeignApi * @Desc TODO 使用 Feign 調(diào)用 b - 接口 * @Date 2019/5/20 23:21 * @Version 1.0 */ @FeignClient(value = "dashboard-b" , fallback = FeignApiFallBack.class) public interface FeignApi { /* * @ClassName FeignApi * @Desc TODO 通過 dashboard-b 服務(wù)名調(diào)用 b() 方法 * @Date 2019/5/20 23:21 * @Version 1.0 */ @RequestMapping("/b") String b(); }
服務(wù)工程 A - Fallback(FeignApiFallBack)
package com.zwc.a.api.impl; import com.zwc.a.api.feign.FeignApi; import org.springframework.stereotype.Component; /* * @ClassName FeignApi * @Desc TODO fallback * @Date 2019/5/20 23:21 * @Version 1.0 */ @Component public class FeignApiFallBack implements FeignApi { /* * @ClassName FeignApiFallBack * @Desc TODO 調(diào)用 dashboard-b 服務(wù)中的 b() 方法失敗時(shí)執(zhí)行 * @Date 2019/5/20 23:31 * @Version 1.0 */ @Override public String b() { return "Hello!aUseB fail"; } }
使用 @Component 注解把此類交給 Spring 管理
實(shí)現(xiàn)了 FeignApi 接口,提供熔斷時(shí)對(duì)應(yīng)的方法
服務(wù)工程 A - controller 前端控制器(消費(fèi)服務(wù))
package com.zwc.a.controller; import com.zwc.a.api.feign.FeignApi; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /* * @ClassName AUseBFeignController * @Desc TODO 使用 Feign 調(diào)用 b - 前端控制器 * @Date 2019/5/20 23:23 * @Version 1.0 */ @RestController public class AUseBFeignController { @Autowired(required = false) private FeignApi feignApi; /* * @ClassName FeignController * @Desc TODO 通過 dashboard-b 服務(wù)名調(diào)用 b() 方法 * @Date 2019/5/20 23:13 * @Version 1.0 */ @RequestMapping("/aUseB") public String aUseB(){ return feignApi.b(); } }
使用 @Autowired 注解裝配 Bean,通過此 Bean 中的方法調(diào)用服務(wù)
此類對(duì)外暴露接口,調(diào)用的實(shí)則是提供者的服務(wù)
服務(wù)工程 A - 啟動(dòng)類
package com.zwc; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import org.springframework.cloud.netflix.hystrix.EnableHystrix; import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard; import org.springframework.cloud.openfeign.EnableFeignClients; @SpringBootApplication @EnableEurekaClient @EnableFeignClients @EnableHystrix @EnableHystrixDashboard public class SpringcloudDashboardAServiceCoreApplication { public static void main(String[] args) { SpringApplication.run(SpringcloudDashboardAServiceCoreApplication.class, args); } }
服務(wù)工程 A - 啟動(dòng)項(xiàng)目
1. 項(xiàng)目啟動(dòng)成功后訪問:http://localhost:8090/hystrix 可以看到
2. 在中間的輸入框中輸入:http://127.0.0.1:8090/hystrix.stream ,點(diǎn)擊 Monitor Stream 按鈕可以看到
3. 此時(shí)還未調(diào)用服務(wù),所以一直顯示 'Loading ...'
4. 另起頁面訪問:http://localhost:8090/a (調(diào)用自己的服務(wù))
5. 輸出內(nèi)容:'Hello!I'm a. port:8090'
6. 這是熔斷監(jiān)控頁面還是不會(huì)有所改變,因?yàn)樵谡{(diào)用別人的服務(wù)時(shí)才會(huì)有相關(guān)數(shù)據(jù)
7. 訪問地址:http://localhost:8090/aUseB (調(diào)用 B 工程的服務(wù))
8. 輸出內(nèi)容:'Hello!aUseB fail' (此時(shí)因?yàn)?B 工程還未啟動(dòng),所以調(diào)用了 fallback 中的方法)
9. 再觀察步驟 2 中的熔斷監(jiān)控頁面,可以看到
10. 啟動(dòng)服務(wù)工程 B,項(xiàng)目啟動(dòng)成功后再次訪問:http://localhost:8090/aUseB (調(diào)用 B 工程的服務(wù))
11. 輸出內(nèi)容:'Hello!I'm b. port:8091' (如果還未調(diào)用成功,等待一會(huì)再刷新試試)
12. 再次觀察步驟 2 中的熔斷監(jiān)控頁面,可以看到
13. 紅色的百分比表示失敗率
14. 左邊的六個(gè)數(shù)字對(duì)應(yīng)著頁面右上角的六個(gè)狀態(tài)(Success、Short-Circuited..)
service 工程 - 項(xiàng)目結(jié)構(gòu)
把多工程項(xiàng)目使用 IntelliJ IDEA 打開
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。