您好,登錄后才能下訂單哦!
本篇內容介紹了“Spring Cloud中的斷路器Hystrix怎么使用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
首先我們分別啟動服務注冊中心,再啟動兩個服務提供者的實例,端口號分別是8080和8081,然后再啟動一個服務消費者,服務消費者的端口號為9000,這幾個都啟動成功之后,我們訪問http://localhost:9000/ribbon-consumer
這個地址,可以看到如下效果:
此時我們關閉掉任意一個服務提供者,再去訪問這個地址,會看到如下效果:
通過前面幾篇文章的學習,大家知道Spring Cloud中采取的默認負載均衡策略就是輪詢,所以當一個服務提供者關掉之后,刷新的時候服務請求成功和請求失敗是成對出現的:當服務消費者去請求那個被關掉的服務提供者的時候就會請求失敗,當服務消費者去請求正常的服務提供者時就能獲得期望的結果。請求失敗時不能給用戶展示這樣一個ErrorPage,而應該是一個可控的頁面,OK,我們來看看如何使用斷路器來解決這個問題。
首先我們需要在服務消費者中引入hystrix,如下:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix</artifactId> </dependency>
引入hystrix之后,我們需要在入口類上通過@EnableCircuitBreaker
開啟斷路器功能,如下:
@EnableCircuitBreaker @SpringBootApplication @EnableDiscoveryClient public class RibbonConsumerApplication { public static void main(String[] args) { SpringApplication.run(RibbonConsumerApplication.class, args); } @LoadBalanced @Bean RestTemplate restTemplate() { return new RestTemplate(); } }
我們也可以使用一個名為@SpringBootApplication
的注解代替這三個注解,@SpringBootApplication
注解的定義如下:
@Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited @SpringBootApplication @EnableDiscoveryClient @EnableCircuitBreaker public @interface SpringCloudApplication { }
實際上就是這三個注解的一個整合。
然后我們創建一個HelloService類,如下:
@Service public class HelloService { @Autowired private RestTemplate restTemplate; @HystrixCommand(fallbackMethod = "error") public String hello() { ResponseEntity<String> responseEntity = restTemplate.getForEntity("http://HELLO-SERVICE/hello", String.class); return responseEntity.getBody(); } public String error() { return "error"; } }
關于這個HelloService類我說如下幾點:
1.RestTemplate執行網絡請求的操作我們放在HelloService中來完成。
2.error方法是一個請求失敗時回調的方法。
3.在hello方法上通過@HystrixCommand注解來指定請求失敗時回調的方法。
OK,最后我們將ConsumerController的邏輯修改成下面這樣:
@RestController public class ConsumerController { @Autowired private HelloService helloService; @RequestMapping(value = "/ribbon-consumer",method = RequestMethod.GET) public String helloController() { return helloService.hello(); } }
此時我們就開啟了斷路器功能。
我們先確認服務注冊中心,兩個服務提供者的實例,端口號分別是8080和8081,一個服務消費者,端口號為9000,一共四個實例都啟動成功,啟動成功之后,我們再關掉一個服務提供者,此時訪問http://localhost:9000/ribbon-consumer
,結果如下:
“Spring Cloud中的斷路器Hystrix怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。