SpringCloud(第 017 篇)電影微服務接入Feign,新增 fallbackFactory 屬性來觸發請求進行容災降級...
SpringCloud(第 017 篇)電影微服務接入Feign,新增 fallbackFactory 屬性來觸發請求進行容災降級
一、大致介紹
1、在一些場景中,簡單的觸發在 FeignClient 加入 Fallback 屬性即可,而另外有一些場景需要訪問導致回退觸發的原因,那麼這個時候可以在 FeignClient 中加入 FallbackFactory 屬性即可;
2、而在使用 Fallback 和 FallbackFactory 時候,我僅僅表述個人觀點,發現二者混合一起用的話,會發生衝突情況,所以大家用的時候注重考慮一下場景,二者屬性用其一即可。
二、實現步驟
2.1 新增 maven 引用包
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>springms-consumer-movie-feign-with-hystrix-factory</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>com.springms.cloud</groupId>
<artifactId>springms-spring-cloud</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<dependencies>
<!-- web模組 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- 客戶端發現模組 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
<!-- Java HTTP 客戶端開發的工具的模組 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-feign</artifactId>
</dependency>
<!-- Hystrix 模組 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
</dependency>
</dependencies>
</project>
2.2 新增應用配置檔案(springms-consumer-movie-feign-with-hystrix-factory\src\main\resources\application.yml)
spring:
application:
name: springms-consumer-movie-feign-with-hystrix-factory
server:
port: 8115
eureka:
client:
# healthcheck:
# enabled: true
serviceUrl:
defaultZone: http://admin:admin@localhost:8761/eureka
instance:
prefer-ip-address: true
instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${spring.application.instance_id:${server.port}}
# 解決第一次請求報超時異常的方案,因為 hystrix 的預設超時時間是 1 秒,因此請求超過該時間後,就會出現頁面超時顯示 :
#
# 這裡就介紹大概三種方式來解決超時的問題,解決方案如下:
#
# 第一種方式:將 hystrix 的超時時間設定成 5000 毫秒
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 5000
#
# 或者:
# 第二種方式:將 hystrix 的超時時間直接禁用掉,這樣就沒有超時的一說了,因為永遠也不會超時了
# hystrix.command.default.execution.timeout.enabled: false
#
# 或者:
# 第三種方式:索性禁用feign的hystrix支援
# feign.hystrix.enabled: false ## 索性禁用feign的hystrix支援
# 超時的issue:https://github.com/spring-cloud/spring-cloud-netflix/issues/768
# 超時的解決方案: http://stackoverflow.com/questions/27375557/hystrix-command-fails-with-timed-out-and-no-fallback-available
# hystrix配置: https://github.com/Netflix/Hystrix/wiki/Configuration#execution.isolation.thread.timeoutInMilliseconds
2.3 新增實體使用者類User(springms-consumer-movie-feign-with-hystrix-factory\src\main\java\com\springms\cloud\entity\User.java)
package com.springms.cloud.entity;
import java.math.BigDecimal;
public class User {
private Long id;
private String username;
private String name;
private Short age;
private BigDecimal balance;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Short getAge() {
return this.age;
}
public void setAge(Short age) {
this.age = age;
}
public BigDecimal getBalance() {
return this.balance;
}
public void setBalance(BigDecimal balance) {
this.balance = balance;
}
}
2.4 新增訪問遠端使用者微服務 Feign 客戶端(springms-consumer-movie-feign-with-hystrix-factory\src\main\java\com\springms\cloud\feign\UserFeignHystrixFactoryClient.java)
package com.springms.cloud.feign;
import com.springms.cloud.entity.User;
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.web.bind.annotation.*;
/**
* 使用者Http請求的客戶端。
*
* 註解FeignClient的傳參:表示的是註冊到 Eureka 服務上的模組名稱。
*
* @author hmilyylimh
*
* @version 0.0.1
*
* @date 2017/9/24
*
*/
@FeignClient(name = "springms-provider-user", /*fallback = HystrixClientFallback.class,*/ fallbackFactory = HystrixClientFallbackFactory.class)
public interface UserFeignHystrixFactoryClient {
/**
* 這裡有兩個坑需要注意:<br/>
*
* <li>這裡需要設定請求的方式為 RequestMapping 註解,用 GetMapping 註解是執行不成功的,即 GetMapping 不支援。</li>
* <li>註解 PathVariable 裡面需要填充變數的名字,不然也是執行不成功的。</li>
*
* @param id
* @return
*/
@RequestMapping(value = "/simple/{id}", method = RequestMethod.GET)
public User findById(@PathVariable("id") Long id);
}
2.5 新增訪問遠端使用者微服務 Fallback 類(springms-consumer-movie-feign-with-hystrix-factory\src\main\java\com\springms\cloud\feign\HystrixClientFallback.java)
package com.springms.cloud.feign;
import com.springms.cloud.entity.User;
import org.springframework.stereotype.Component;
/**
* Hystrix 客戶端回退機制類。
*
* 這裡加上註解 Component 的目的:就是因為沒有這個註解,執行時候會報錯,報錯會說沒有該類的這個例項,所以我們就想到要例項化這個類,因此加了這個註解。
*
* @author hmilyylimh
*
* @version 0.0.1
*
* @date 2017/9/24
*
*/
@Component
public class HystrixClientFallback implements UserFeignHystrixFactoryClient {
@Override
public User findById(Long id) {
System.out.println("======== findById Fallback " + Thread.currentThread().getThreadGroup() + " - " + Thread.currentThread().getId() + " - " + Thread.currentThread().getName());
User tmpUser = new User();
tmpUser.setId(0L);
return tmpUser;
}
}
2.6 新增訪問遠端使用者微服務 FallbackFactory 類(springms-consumer-movie-feign-with-hystrix-factory\src\main\java\com\springms\cloud\feign\HystrixClientFallbackFactory.java)
package com.springms.cloud.feign;
import com.springms.cloud.entity.User;
import feign.hystrix.FallbackFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
/**
* Hystrix 客戶端回退機制類。
*
* 這裡加上註解 Component 的目的:就是因為沒有這個註解,執行時候會報錯,報錯會說沒有該類的這個例項,所以我們就想到要例項化這個類,因此加了這個註解。
*
* @author hmilyylimh
*
* @version 0.0.1
*
* @date 2017/9/24
*
*/
@Component
public class HystrixClientFallbackFactory implements FallbackFactory<UserFeignHystrixFactoryClient> {
private static final Logger Logger = LoggerFactory.getLogger(HystrixClientFallbackFactory.class);
@Override
public UserFeignHystrixFactoryClient create(Throwable e) {
Logger.info("fallback; reason was: {}", e.getMessage());
System.out.println("======== UserFeignHystrixFactoryClient.create " + Thread.currentThread().getThreadGroup() + " - " + Thread.currentThread().getId() + " - " + Thread.currentThread().getName());
return new UserFeignWithFallBackFactoryClient(){
@Override
public User findById(Long id) {
System.out.println("======== findById FallBackFactory " + Thread.currentThread().getThreadGroup() + " - " + Thread.currentThread().getId() + " - " + Thread.currentThread().getName());
User tmpUser = new User();
tmpUser.setId(-1L);
return tmpUser;
}
};
}
}
/****************************************************************************************
@FeignClient(name = "hello", fallbackFactory = HystrixClientFallbackFactory.class)
protected interface HystrixClient {
@RequestMapping(method = RequestMethod.GET, value = "/hello")
Hello iFailSometimes();
}
@Component
static class HystrixClientFallbackFactory implements FallbackFactory<HystrixClient> {
@Override
public HystrixClient create(Throwable cause) {
return new HystrixClientWithFallBackFactory() {
@Override
public Hello iFailSometimes() {
return new Hello("fallback; reason was: " + cause.getMessage());
}
};
}
}
****************************************************************************************/
2.7 新增回退處理客戶端類(springms-consumer-movie-feign-with-hystrix-factory\src\main\java\com\springms\cloud\feign\UserFeignWithFallBackFactoryClient.java)
package com.springms.cloud.feign;
/**
* 回退處理客戶端。
*
* @author hmilyylimh
*
* @version 0.0.1
*
* @date 2017/9/24
*
*/
public interface UserFeignWithFallBackFactoryClient extends UserFeignHystrixFactoryClient{
}
2.8 新增Web訪問層Controller(springms-consumer-movie-feign-with-hystrix-factory\src\main\java\com\springms\cloud\controller\MovieFeignHystrixFactoryController.java)
package com.springms.cloud.controller;
import com.springms.cloud.entity.User;
import com.springms.cloud.feign.UserFeignHystrixFactoryClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MovieFeignHystrixFactoryController {
@Autowired
private UserFeignHystrixFactoryClient userFeignHystrixFactoryClient;
@GetMapping("/movie/{id}")
public User findById(@PathVariable Long id) {
System.out.println("======== findById Controller " + Thread.currentThread().getThreadGroup() + " - " + Thread.currentThread().getId() + " - " + Thread.currentThread().getName());
return userFeignHystrixFactoryClient.findById(id);
}
}
2.9 新增電影微服務啟動類(springms-consumer-movie-feign-custom-without-hystrix\src\main\java\com\springms\cloud\MsConsumerMovieFeignCustomWithoutHystrixApplication.java)
package com.springms.cloud;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.feign.EnableFeignClients;
/**
* 電影微服務接入Feign,新增 fallbackFactory 屬性來觸發請求進行容災降級。
*
* Feign: Java HTTP 客戶端開發的工具。
*
* 註解 EnableFeignClients 表示該電影微服務已經接入 Feign 模組。
*
* @author hmilyylimh
*
* @version 0.0.1
*
* @date 2017/9/24
*
*/
@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients
public class MsConsumerMovieFeignHystrixFactoryApplication {
public static void main(String[] args) {
SpringApplication.run(MsConsumerMovieFeignHystrixFactoryApplication.class, args);
System.out.println("【【【【【【 電影Feign-HystrixFactory微服務 】】】】】】已啟動.");
}
}
三、測試
/****************************************************************************************
一、電影微服務接入Feign,新增 fallbackFactory 屬性來觸發請求進行容災降級(測試正常接入功能):
1、註解:EnableFeignClients;
2、編寫類 HystrixClientFallbackFactory 回退處理機制類,並給該類加上註解 Component ;加入 FeignClient 註解
// @FeignClient(name = "springms-provider-user", fallback = HystrixClientFallback.class )
3、啟動 springms-discovery-eureka 模組服務,啟動1個埠;
4、啟動 springms-provider-user 模組服務,啟動1個埠;
5、啟動 springms-consumer-movie-feign-with-hystrix-factory 模組服務;
6、在瀏覽器輸入地址 http://localhost:8115/movie/1 可以看到具體的使用者資訊(即使用者ID != 0 的使用者)成功的被列印出來;
****************************************************************************************/
/****************************************************************************************
二、電影FeignHystrix-HystrixFactory微服務接入 HystrixFactory 功能模組(測試斷路器功能):
1、註解:EnableFeignClients;
2、編寫類 HystrixClientFallbackFactory 回退處理機制類,並給該類加上註解 Component,UserFeignHystrixFactoryClient 加上 fallbackFactory 屬性;
// @FeignClient(name = "springms-provider-user", fallback = HystrixClientFallback.class, fallbackFactory = HystrixClientFallbackFactory.class )
3、啟動 springms-discovery-eureka 模組服務,啟動1個埠;
4、啟動 springms-provider-user 模組服務,啟動1個埠;
5、啟動 springms-consumer-movie-feign-with-hystrix-factory 模組服務;
6、在瀏覽器輸入地址 http://localhost:8115/movie/1 可以看到具體的使用者資訊(即使用者ID != 0 的使用者)成功的被列印出來;
7、停止 springms-provider-user 模組服務;
8、在瀏覽器輸入地址http://localhost:8115/movie/1 可以看到使用者資訊ID = 0 的使用者成功的被列印出來,但隨著問題也來了;
9、HystrixClientFallbackFactory 截獲的異常卻沒有被列印出來,本來使用者微服務停止的話,請求連結就已經連結超時了,但是為啥異常沒有列印出來呢?請看下面第三中測試方法。
****************************************************************************************/
/****************************************************************************************
三、電影FeignHystrix-HystrixFactory微服務接入 HystrixFactory 功能模組(測試斷路器功能):
1、註解:EnableFeignClients;
2、編寫類 HystrixClientFallbackFactory 回退處理機制類,並給該類加上註解 Component,UserFeignHystrixFactoryClient 去掉 fallback 屬性,然後加上 fallbackfactory 屬性;
// @FeignClient(name = "springms-provider-user", fallbackFactory = HystrixClientFallbackFactory.class )
3、啟動 springms-discovery-eureka 模組服務,啟動1個埠;
4、啟動 springms-provider-user 模組服務,啟動1個埠;
5、啟動 springms-consumer-movie-feign-with-hystrix-factory 模組服務;
6、在瀏覽器輸入地址 http://localhost:8115/movie/1 可以看到具體的使用者資訊(即使用者ID != 0 的使用者)成功的被列印出來;
7、停止 springms-provider-user 模組服務;
8、在瀏覽器輸入地址http://localhost:8115/movie/1 可以看到使用者資訊ID = -1 的使用者成功的被列印出來,而且異常資訊日誌也被列印出來了,這就正常了;
注意:第2步驟:UserFeignHystrixFactoryClient 去掉 fallback 屬性,然後加上 fallbackfactory 屬性;
所以這裡目前暫時謹記,fallback 和 fallbackfactory 屬性會有衝突,所以只要其一就行了;
****************************************************************************************/
四、下載地址
https://gitee.com/ylimhhmily/SpringCloudTutorial.git
SpringCloudTutorial交流QQ群: 235322432
SpringCloudTutorial交流微信群: 微信溝通群二維碼圖片連結
歡迎關注,您的肯定是對我最大的支援!!!
相關文章
- SpringCloud(第 006 篇)電影微服務,使用 Ribbon 在客戶端進行負載均衡SpringGCCloud微服務客戶端負載
- 【SpringCloud】(十四):Feign對Hystrix的支援 fallbackFactorySpringGCCloud
- SpringCloud(第 013 篇)電影微服務使用定製化 Feign 在客戶端進行負載均衡排程併為 Feign 配置帳號密碼登入認證 Eureka...SpringGCCloud微服務客戶端負載密碼
- SpringCloud構建微服務架構-Hystrix服務降級SpringGCCloud微服務架構
- SpringCloud(第 002 篇)簡單電影微服務類(消費方,而提供方為使用者微服務)SpringGCCloud微服務
- SpringCloud(第 005 篇)電影微服務,註冊到 EurekaServer 中,通過 Http 協議訪問使用者微服務SpringGCCloud微服務ServerHTTP協議
- SpringCloud(第 007 篇)電影微服務,使用定製化 Ribbon 在客戶端進行負載均衡不同服務不同配置策SpringGCCloud微服務客戶端負載
- 微服務可用性之隔離限流降級微服務
- SpringCloud微服務治理二(Robbin,Hystix,Feign)SpringGCCloud微服務
- SpringCloud系列之使用Feign進行服務呼叫SpringGCCloud
- net core天馬行空系列-微服務篇:全宣告式http客戶端feign快速接入微服務中心nacos微服務HTTP客戶端
- 使用jMeter構造大量併發HTTP請求進行微服務效能測試JMeterHTTP微服務
- 微服務架構 | 5. 服務容災微服務架構
- 微服務架構—服務降級微服務架構
- 微服務18:微服務治理之異地多活容災微服務
- [jaeger] 四、微服務之呼叫鏈(Feign+SpringCloud)微服務SpringGCCloud
- SpringCloud微服務(基於Eureka+Feign+Hystrix+Zuul)SpringGCCloud微服務Zuul
- 【Spring Cloud】Feign呼叫異常觸發降級後如何捕獲異常SpringCloud
- SpringCloud分散式微服務b2b2c電子商務分散式微服務-docker-feign-hystrix(七)SpringGCCloud分散式微服務Docker
- 記一次線上SpringCloud-Feign請求服務超時異常排查SpringGCCloud
- SpringCloud元件: GateWay整合Eureka轉發服務請求SpringGCCloud元件Gateway
- SpringCloud-Hystrix 服務降級、熔斷SpringGCCloud
- 五. SpringCloud服務降級與熔斷SpringGCCloud
- 基於.NET CORE微服務框架 -談談surging的服務容錯降級微服務框架
- SpringCloud分散式微服務b2b2c電子商務docker-feign配置(六)SpringGCCloud分散式微服務Docker
- Spring Cloud構建微服務架構—服務容錯保護(Hystrix服務降級)SpringCloud微服務架構
- SpringCloud微服務實戰——搭建企業級開發框架(十五):整合Sentinel高可用流量管理框架【熔斷降級】SpringGCCloud微服務框架
- SpringCloud分散式微服務雲架構 第三篇: 服務消費者(Feign)(Finchley版本)SpringGCCloud分散式微服務架構
- 對請求來源進行白名單限制
- 利用post請求傳送內容進行爬蟲爬蟲
- 微服務實戰SpringCloud之Spring Cloud Feign替代HTTP Client微服務SpringGCCloudHTTPclient
- SpringCloud微服務實戰——搭建企業級開發框架(三十九):使用Redis分散式鎖(Redisson)+自定義註解+AOP實現微服務重複請求控制SpringGCCloud微服務框架Redis分散式
- apisix~按域名進行請求轉發API
- SpringCloud微服務帶來的問題SpringGCCloud微服務
- 微服務呼叫元件 Feign微服務元件
- 微服務互相呼叫-Feign微服務
- SpringCloud分散式微服務b2b2c電子商務docker-feign-hystrix-ribbon(八)SpringGCCloud分散式微服務Docker
- SpringCloud分散式微服務b2b2c電子商務-Spring Cloud自定義引導屬性源SpringGCCloud分散式微服務