Spring Cloud Feign是一套基於Netflix Feign實現的聲明式服務調用客戶端。它使得編寫Web服務客戶端變得更加簡單。咱們只須要經過建立接口並用註解來配置它既可完成對Web服務接口的綁定。它具有可插拔的註解支持,包括Feign註解、JAX-RS註解。它也支持可插拔的編碼器和解碼器。Spring Cloud Feign還擴展了對Spring MVC註解的支持,同時還整合了Ribbon和Eureka來提供均衡負載的HTTP客戶端實現。html
下面,咱們經過一個例子來展示Feign如何方便的聲明對eureka-client服務的定義和調用。web
下面的例子,咱們將利用以前構建的eureka-server
做爲服務註冊中心、eureka-client
做爲服務提供者做爲基礎。而基於Spring Cloud Ribbon實現的消費者,咱們能夠根據eureka-consumer
實現的內容進行簡單改在就能完成,具體步驟以下:spring
eureka-consumer
複製一個服務消費者工程,命名爲:eureka-consumer-feign
。在pom.xml
中增長下面的依賴:
<<span class="name" style="box-sizing: border-box; margin: 0px; padding: 0px; font-weight: inherit; border: 0px; font-style: inherit; font-family: inherit; vertical-align: baseline; color: rgb(38, 139, 210);">dependencies>
...
<<span class="name" style="box-sizing: border-box; margin: 0px; padding: 0px; font-weight: inherit; border: 0px; font-style: inherit; font-family: inherit; vertical-align: baseline; color: rgb(38, 139, 210);">dependency>
<<span class="name" style="box-sizing: border-box; margin: 0px; padding: 0px; font-weight: inherit; border: 0px; font-style: inherit; font-family: inherit; vertical-align: baseline; color: rgb(38, 139, 210);">groupId>org.springframework.cloud</<span class="name" style="box-sizing: border-box; margin: 0px; padding: 0px; font-weight: inherit; border: 0px; font-style: inherit; font-family: inherit; vertical-align: baseline; color: rgb(38, 139, 210);">groupId>
<<span class="name" style="box-sizing: border-box; margin: 0px; padding: 0px; font-weight: inherit; border: 0px; font-style: inherit; font-family: inherit; vertical-align: baseline; color: rgb(38, 139, 210);">artifactId>spring-cloud-starter-feign</<span class="name" style="box-sizing: border-box; margin: 0px; padding: 0px; font-weight: inherit; border: 0px; font-style: inherit; font-family: inherit; vertical-align: baseline; color: rgb(38, 139, 210);">artifactId>
</<span class="name" style="box-sizing: border-box; margin: 0px; padding: 0px; font-weight: inherit; border: 0px; font-style: inherit; font-family: inherit; vertical-align: baseline; color: rgb(38, 139, 210);">dependency>
</<span class="name" style="box-sizing: border-box; margin: 0px; padding: 0px; font-weight: inherit; border: 0px; font-style: inherit; font-family: inherit; vertical-align: baseline; color: rgb(38, 139, 210);">dependencies>
|
@EnableFeignClients
註解開啓掃描Spring Cloud Feign客戶端的功能:
@EnableFeignClients
@EnableDiscoveryClient
@SpringBootApplication
public class Application {
public static void main(String[] args) {
new SpringApplicationBuilder(Application.class).web(true).run(args);
}
}
|
@FeignClient
註解來指定這個接口所要調用的服務名稱,接口中定義的各個函數使用Spring MVC的註解就能夠來綁定服務提供方的REST接口,好比下面就是綁定eureka-client
服務的/dc
接口的例子:
@FeignClient("eureka-client")
public interface DcClient {
@GetMapping("/dc")
String consumer();
}
|
@RestController
public class DcController {
@Autowired
DcClient dcClient;
@GetMapping("/consumer")
public String dc() {
return dcClient.consumer();
}
}
|
經過Spring Cloud Feign來實現服務調用的方式更加簡單了,經過@FeignClient
定義的接口來統一的生命咱們須要依賴的微服務接口。而在具體使用的時候就跟調用本地方法一點的進行調用便可。因爲Feign是基於Ribbon實現的,因此它自帶了客戶端負載均衡功能,也能夠經過Ribbon的IRule進行策略擴展。另外,Feign還整合的Hystrix來實現服務的容錯保護,在Dalston版本中,Feign的Hystrix默認是關閉的。待後文介紹Hystrix帶領你們入門以後,咱們再結合介紹Feign中的Hystrix以及配置方式。架構
在完成了上面你的代碼編寫以後,讀者能夠將eureka-server、eureka-client、eureka-consumer-feign都啓動起來,來跟蹤觀察eureka-consumer-feign服務是如何消費eureka-client服務的/dc
接口的,而且也能夠經過啓動多個eureka-client服務來觀察其負載均衡的效果。app
從如今開始,我這邊會將近期研發的springcloud微服務雲架構的搭建過程和精髓記錄下來,幫助更多有興趣研發spring cloud框架的朋友,但願能夠幫助更多的好學者。你們來一塊兒探討spring cloud架構的搭建過程及如何運用於企業項目。源碼來源負載均衡