91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringCloud之熔斷器Hystrix(一)

發布時間:2020-07-04 11:06:30 來源:網絡 閱讀:423 作者:nineteens 欄目:編程語言

  前言

  SpringCloud 是微服務中的翹楚,最佳的落地方案。

  在微服務架構中多層服務之間會相互調用,如果其中有一層服務故障了,可能會導致一層服務或者多層服務

  故障,從而導致整個系統故障。這種現象被稱為服務雪崩效應。

  SpringCloud 中的 Hystrix 組件就可以解決此類問題,Hystrix 負責監控服務之間的調用情況,連續多次失敗的

  情況進行熔斷保護。保護的方法就是使用 Fallback,當調用的服務出現故障時,就可以使用 Fallback 方法的

  返回值;Hystrix 間隔時間會再次檢查故障的服務,如果故障服務恢復,將繼續使用服務。

  源碼

  GitHub地址:https://github.com/intomylife/SpringCloud

  環境

  JDK 1.8.0 +

  Maven 3.0 +

  SpringBoot 2.0.3

  SpringCloud Finchley.RELEASE

  開發工具

  IntelliJ IDEA

  正文

  commons 工程

  commons 工程 - POM 文件

  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

  4.0.0

  com.zwc

  springcloud-hystrix-commons

  1.0

  springcloud-hystrix-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 工程 - 項目結構

  service 工程

  ① 此工程下有四個模塊:一個注冊中心以及服務 A、B、C

  ② A 提供服務并且調用服務 B、B 提供服務并且調用服務 C 以及 C 提供服務

  registry-service(注冊中心)

  registry-service - POM 文件

  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

  4.0.0

  com.zwc

  springcloud-hystrix-service

  1.0

  com.zwc

  springcloud-hystrix-registry-service

  1.0

  springcloud-hystrix-registry-service

  注冊中心

  jar

  com.zwc

  springcloud-hystrix-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

  # 應用名稱

  spring:

  application:

  name: eurka-server

  eureka:

  instance:

  # 使用 ip 代替實例名

  prefer-ip-address: true

  # 實例的主機名

  hostname: ${spring.cloud.client.ip-address}

  # 實例的 ID 規則

  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/

  這里使用了默認的 8761 端口,當然也可以更改,不過在發現調用服務端的注冊中心地址端口要與它一致

  registry-service - 啟動類

  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 SpringcloudHystrixRegistryServiceApplication {

  public static void main(String[] args) {

  SpringApplication.run(SpringcloudHystrixRegistryServiceApplication.class, args);

  }

  }

  在啟動類中添加 @EnableEurekaServer 注解表示此工程是注冊中心

  registry-service - 啟動項目

  1. 項目啟動成功后訪問 http://localhost:8761/ 即可看到 eureka-server 主頁面

  服務工程 A(提供者和消費者)

  服務工程 A - POM 文件

  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

  4.0.0

  com.zwc

  springcloud-hystrix-a-service

  1.0

  com.zwc

  springcloud-hystrix-a-service-core

  1.0

  springcloud-hystrix-a-service-core

  服務工程 - A 核心

  jar

  com.zwc

  springcloud-hystrix-commons

  1.0

  com.zwc

  springcloud-hystrix-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-maven-plugin

  加入 spring-cloud-starter-netflix-eureka-client 依賴

  還需要加入 Feign 的起步依賴 spring-cloud-starter-openfeign

  服務工程 A - application.yml 配置文件

  # 端口無錫看婦科哪里好 http://www.xasgfk.cn/

  server:

  port: 8090

  # 應用名稱

  spring:

  application:

  name: hystrix-a

  eureka:

  instance:

  # 使用 ip 代替實例名

  prefer-ip-address: true

  # 實例的主機名

  hostname: ${spring.cloud.client.ip-address}

  # 實例的 ID 規則

  instance-id: ${spring.cloud.client.ip-address}:${spring.application.name}:${server.port}

  client:

  serviceUrl:

  # 注冊中心地址

  defaultZone: http://${eureka.instance.hostname}:8761/eureka/

  注意此處配置注冊中心地址的端口為 8761 也就是上面注冊中心工程配置的端口

  spring.application.name:應用名稱,被消費者調用時需要用到,它在消費的同時也可以被消費

  這里除注冊中心工程以外的三個工程都與此配置相似,不一樣的地方就是端口和應用名稱,不再贅述

  服務工程 A - application.properties(注意)

  # 開啟斷路器

  feign.hystrix.enabled=true

  斷路器要主動開啟,服務調用失敗時才會熔斷

  此處有一個坑,把此配置寫到 application.yml 中熔斷不會生效

  A 和 B 工程都有此配置,此次搭建中 C 工程只提供服務,沒有消費服務。所以 C 工程不用該配置

  application.properties 和 bootstrap.yml 二選一就行

  服務工程 A - bootstrap.yml(注意)

  feign:

  hystrix:


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武宁县| 宜都市| 昂仁县| 罗城| 团风县| 南开区| 将乐县| 鱼台县| 漾濞| 海原县| 陆良县| 宕昌县| 隆子县| 兴宁市| 长汀县| 台中县| 荔波县| 定陶县| 博湖县| 九江市| 兴海县| 烟台市| 抚州市| 惠水县| 湘潭县| 塔河县| 容城县| 沙坪坝区| 昔阳县| 儋州市| 辽源市| 汝城县| 台中市| 天津市| 乌审旗| 巩义市| 松溪县| 孟津县| 望都县| 扎鲁特旗| 佛教|