真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringCloudHystrix斷路器如何實現(xiàn)容錯和降級-創(chuàng)新互聯(lián)

小編給大家分享一下Spring Cloud Hystrix斷路器如何實現(xiàn)容錯和降級,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

雞冠ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!

基礎環(huán)境

  1. JDK 1.8

  2. Maven 3.3.9

  3. IntelliJ 2018.1

Git:項目源碼

添加產(chǎn)品服務

在intelliJ中創(chuàng)建一個新的maven項目,使用如下配置

  1. groupId: cn.zxuqian

  2. artifactId: productService

然后在pom.xml中添加如下代碼:



  4.0.0

  cn.zxuqian
  productService
  1.0-SNAPSHOT
  
    org.springframework.boot
    spring-boot-starter-parent
    2.0.1.RELEASE
    
  

  
    UTF-8
    1.8
  

  
    
      org.springframework.cloud
      spring-cloud-starter-netflix-eureka-client
    
    
      org.springframework.cloud
      spring-cloud-starter-config
    
    
      org.springframework.boot
      spring-boot-starter-web
    

    
      org.springframework.boot
      spring-boot-starter-test
      test
    
  
  
    
      
        org.springframework.cloud
        spring-cloud-dependencies
        Finchley.M9
        pom
        import
      
    
  

  
    
      
        org.springframework.boot
        spring-boot-maven-plugin
      
    
  

  
    
      spring-milestones
      Spring Milestones
      https://repo.spring.io/libs-milestone
      
        false
      
    
  

我們繼續(xù)使用了spring-cloud-starter-netflix-eureka-client以使產(chǎn)品服務自動注冊到eureka服務中。然后還使用了spring-cloud-starter-config讀取配置服務中心的配置文件。這個項目只是一個簡單的spring web項目。

在src/main/resources下創(chuàng)建bootstrap.yml文件,添加如下內(nèi)容:

spring:
 application:
  name: product-service
 cloud:
  config:
   uri: http://localhost:8888

在配置中心的git倉庫中創(chuàng)建product-service.yml文件 添加如下配置并提交:

server:
 port: 8081

此配置指定了產(chǎn)品服務的端口為8081。接著創(chuàng)建Application類,添加如下代碼:

package cn.zxuqian;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@EnableDiscoveryClient
@SpringBootApplication
public class Application {
  public static void main(String[] args) {
    SpringApplication.run(Application.class, args);
  }
}

@EnableDiscoveryClient注解將指示spring cloud自動把本服務注冊到eureka。最后創(chuàng)建cn.zxuqian.controllers.ProductController控制器,提供/products API,返回示例數(shù)據(jù):

package cn.zxuqian.controllers;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ProductController {

  @RequestMapping("/products")
  public String productList() {
    return "外套,夾克,毛衣,T恤";
  }
}

配置Web客戶端

打開我們之前創(chuàng)建的web項目,在pom.xml中新添Hystrix依賴:


  org.springframework.cloud
  spring-cloud-starter-netflix-hystrix

然后更新Application類的代碼:

package cn.zxuqian;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;
@EnableCircuitBreaker
@EnableDiscoveryClient
@SpringBootApplication
public class Application {
  public static void main(String[] args) {
    SpringApplication.run(Application.class, args);
  }

  @Bean
  public RestTemplate rest(RestTemplateBuilder builder) {
    return builder.build();
  }
}

這里使用@EnableCircuitBreaker來開啟斷路器功能,然后還添加了一個rest方法并使用@Bean注解。這部分屬于Spring依賴注入功能,使用@Bean標記的方法將告訴如何初始化此類對象,比如本例中就是使用RestTemplateBuilder來創(chuàng)建一個RestTemplate的對象,這個稍后在使用斷路器的service中用到。

創(chuàng)建cn.zxuqian.service.ProductService類,并添加如下代碼:

package cn.zxuqian.services;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
import java.util.List;

@Service
public class ProductService {
  private final RestTemplate restTemplate;
  @Autowired
  private DiscoveryClient discoveryClient;
  public ProductService(RestTemplate restTemplate) {
    this.restTemplate = restTemplate;
  }

  @HystrixCommand(fallbackMethod = "backupProductList")
  public String productList() {
    List instances = this.discoveryClient.getInstances("product-service");
    if(instances != null && instances.size() > 0) {
      return this.restTemplate.getForObject(instances.get(0).getUri() + "/products", String.class);
    }

    return "";
  }

  public String backupProductList() {
    return "夾克,毛衣";
  }
}

之所以要創(chuàng)建一個Service類,是因為Hystrix只能在標記為@Service或@Component的類中使用,這樣才能夠正常使用Spring Context所提供的API。這個以后深入Spring時再作說明。

使用@HystrixCommand注解后,Hystrix將監(jiān)控被注解的方法即productList(底層使用proxy包裝此方法以此實現(xiàn)監(jiān)控),一旦此方法的錯誤累積到一定門檻的時候,就會啟動斷路器,后續(xù)所有調(diào)用productList方法的請求都會失敗,而會臨時調(diào)用fallbackMethod指定的方法backupProductList(),然后當服務恢復正常時,斷路器就會關閉。

我們還在此類中用了DiscoveryClient用以尋找產(chǎn)品服務的uri地址,使用產(chǎn)品服務的spring.application.name配置項的值,即product-service作為serviceID傳給discoveryClient.getInstances()方法,然后會返回一個list,因為目前我們只有一個產(chǎn)品服務啟動著,所以只需要取第一個實例的uri地址即可。

然后我們使用RestTemplate來訪問產(chǎn)品服務的api,注意這里使用了Spring的構造方法注入,即之前我們用@Bean注解的方法會被用來初始化restTemplate變量,不需我們手動初始化。RestTemplate類提供了getForObject()方法來訪問其它Rest API并把結果包裝成對象的形式,第一個參數(shù)是要訪問的api的uri地址,第二參數(shù)為獲取的結果的類型,這里我們返回的是String,所以傳給他String.class。

backupProductList()方法返回了降級后的產(chǎn)品列表信息。

最后創(chuàng)建一個控制器cn.zxuqian.controllers.ProductController并添加如下代碼:

package cn.zxuqian.controllers;
import cn.zxuqian.services.ProductService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ProductController {
  @Autowired
  private ProductService productService;
  @RequestMapping("/products")
  public String productList() {
    return productService.productList();
  }
}

 這里使用ProductService為/products路徑提供數(shù)據(jù)。

測試

首先,我們使用spring-boot:run插件啟動配置中心服務,config-server,然后啟動eureka-server,再啟動product-service,最后啟動web客戶端,稍等片刻待eureka服務注冊成功之后訪問http://localhost:8080/products,正常的情況下會得到外套,夾克,毛衣,T恤結果,然后我們關閉product-service,之后再訪問同樣的路徑,會得到降級后的結果:夾克,毛衣

以上是“Spring Cloud Hystrix斷路器如何實現(xiàn)容錯和降級”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


文章標題:SpringCloudHystrix斷路器如何實現(xiàn)容錯和降級-創(chuàng)新互聯(lián)
文章鏈接:http://weahome.cn/article/doheci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部