Spring Cloud構建微服務架構服務消費Ribbon

Spring Cloud Ribbon

Spring Cloud Ribbon是基於Netflix Ribbon實現的一套客戶端負載均衡的工具。它是一個基於HTTP和TCP的客戶端負載均衡器。它能夠經過在客戶端中配置ribbonServerList來設置服務端列表去輪詢訪問以達到均衡負載的做用。html

當Ribbon與Eureka聯合使用時,ribbonServerList會被DiscoveryEnabledNIWSServerList重寫,擴展成從Eureka註冊中心中獲取服務實例列表。同時它也會用NIWSDiscoveryPing來取代IPing,它將職責委託給Eureka來肯定服務端是否已經啓動。web

而當Ribbon與Consul聯合使用時,ribbonServerList會被ConsulServerList來擴展成從Consul獲取服務實例列表。同時由ConsulPing來做爲IPing接口的實現。spring

咱們在使用Spring Cloud Ribbon的時候,不管是與Eureka仍是Consul結合,都會在引入Spring Cloud Eureka或Spring Cloud Consul依賴的時候經過自動化配置來加載上述所說的配置內容,因此咱們能夠快速在Spring Cloud中實現服務間調用的負載均衡。架構

下面咱們經過具體的例子來看看如何使用Spring Cloud Ribbon來實現服務的調用以及客戶端均衡負載。app

咱們將利用以前構建的eureka-server做爲服務註冊中心、eureka-client做爲服務提供者做爲基礎。而基於Spring Cloud Ribbon實現的消費者,咱們能夠根據eureka-consumer實現的內容進行簡單改在就能完成,具體步驟以下:負載均衡

  • 根據eureka-consumer複製一個服務消費者工程,命名爲:eureka-consumer-ribbon。在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-ribbon</<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>
  • 修改應用主類。爲RestTemplate增長@LoadBalanced註解:
 
    
@EnableDiscoveryClient
@SpringBootApplication
public class Application {
 
@Bean
@LoadBalanced
public RestTemplate restTemplate() {
return new RestTemplate();
}
 
public static void main(String[] args) {
new SpringApplicationBuilder(Application.class).web(true).run(args);
}
}
  • 修改Controller。去掉原來經過LoadBalancerClient選取實例和拼接URL的步驟,直接經過RestTemplate發起請求。
 
    
@RestController
public class DcController {
 
@Autowired
RestTemplate restTemplate;
 
@GetMapping("/consumer")
public String dc() {
return restTemplate.getForObject( String.class);
}
 
}

能夠看到這裏,咱們除了去掉了原來與LoadBalancerClient相關的邏輯以外,對於RestTemplate的使用,咱們的第一個url參數有一些特別。這裏請求的host位置並無使用一個具體的IP地址和端口的形式,而是採用了服務名的方式組成。那麼這樣的請求爲何能夠調用成功呢?由於Spring Cloud Ribbon有一個攔截器,它可以在這裏進行實際調用的時候,自動的去選取服務實例,並將實際要請求的IP地址和端口替換這裏的服務名,從而完成服務接口的調用。框架

 

從如今開始,我這邊會將近期研發的springcloud微服務雲架構的搭建過程和精髓記錄下來,幫助更多有興趣研發spring cloud框架的朋友,但願能夠幫助更多的好學者。你們來一塊兒探討spring cloud架構的搭建過程及如何運用於企業項目。源碼來源微服務

相關文章
相關標籤/搜索