當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Eclipse(STS) 初次搭建Spring Cloud项目之断路器Hystrix(五)
生活随笔
收集整理的這篇文章主要介紹了
Eclipse(STS) 初次搭建Spring Cloud项目之断路器Hystrix(五)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
一、什么是斷路器
Netflix has created a library called Hystrix that implements the circuit breaker pattern. In a microservice architecture it is common to have multiple layers of service calls。 -------來自官網
當底層服務出現故障時會導致連鎖故障。當對特定的服務的調用的不可用達到一個閥值(Hystric 是5秒20次) 斷路器將會被打開。斷路打開后,可用避免連鎖故障,fallback方法可以直接返回一個固定值。
二、這里我們直接說Feign集成Hystrix
Feign本身就集成了Hystrix,只是默認為關閉狀態,我們需要在配置文件中將其打開
feign:hystrix:enabled: true 復制代碼下面我們來看看代碼如何寫,其實很簡單,使用上一篇文章中的cloud-demo-feign項目,application.yml內容如下:
server:port: 8811 # 你的端口 spring:application:name: feign eureka:client:service-url:defaultZone: http://admin:admin@server1:8761/eureka/,http://admin:admin@server2:8762/eureka/ feign:hystrix:enabled: true service-eureka-client:ribbon:NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RandomRule #com.netflix.loadbalancer.RandomRule #配置規則 隨機 #com.netflix.loadbalancer.RoundRobinRule #配置規則 輪詢 #com.netflix.loadbalancer.RetryRule #配置規則 重試 #com.netflix.loadbalancer.WeightedResponseTimeRule #配置規則 響應時間權重 #com.netflix.loadbalancer.BestAvailableRule #配置規則 最空閑連接策略 復制代碼項目結構如下:
新建feign斷路器接口SchedualClientNameWithFallbackFactory和斷路器的實現類HystrixClientFallbackFactory
package com.hewl.hystrix;import com.hewl.feign.SchedualCilentName;public interface SchedualClientNameWithFallbackFactory extends SchedualCilentName {}復制代碼package com.hewl.hystrix;import java.util.HashMap; import java.util.Map;import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component;import com.hewl.feign.SchedualCilentName;import feign.hystrix.FallbackFactory;@Component public class HystrixClientFallbackFactory implements FallbackFactory<SchedualCilentName> {private static final Logger log = LoggerFactory.getLogger(HystrixClientFallbackFactory.class);@Overridepublic SchedualCilentName create(Throwable cause) {// TODO Auto-generated method stubreturn new SchedualClientNameWithFallbackFactory() {@Overridepublic String testFromClientOne(String name) {log.error("fallback ,the result is : " + cause);// TODO Auto-generated method stubMap<String, Object> map = new HashMap<String, Object>();map.put("ID", -1L);map.put("NAME","");return map.toString();}};}}復制代碼SchedualCilentName類做如下修改,feignclient注解添加fallbackfactory鍵值對
package com.hewl.feign;import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam;import com.hewl.hystrix.HystrixClientFallbackFactory;@FeignClient(value="service-eureka-client",fallbackFactory = HystrixClientFallbackFactory.class) public interface SchedualCilentName {@GetMapping(value = "/test")public String testFromClientOne(@RequestParam("name") String name);} 復制代碼下面啟動項目測試
訪問http://localhost:8811/test
熔斷成功!!!轉載于:https://juejin.im/post/5d01f057f265da1bd04edac8
總結
以上是生活随笔為你收集整理的Eclipse(STS) 初次搭建Spring Cloud项目之断路器Hystrix(五)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 具有只读属性的ComboBox
- 下一篇: Ajax调用MVC控制器参数为实体