Spring Cloud Netflix—宣告性REST客戶端:Feign

blingbling1發表於2018-03-07

直接使用Ribbon API 您也可以直接使用LoadBalancerClient。例: public class MyClass { @Autowired private LoadBalancerClient loadBalancer;

public void doStuff() {
    ServiceInstance instance = loadBalancer.choose("stores");
    URI storesUri = URI.create(String.format("http://%s:%s", instance.getHost(), instance.getPort()));
    // ... do something with the URI
}
複製程式碼

} 快取Ribbon配置

每個Ribbon命名的客戶端都有一個相應的子應用程式上下文,Spring Cloud維護,這個應用程式上下文在第一個請求中被延遲載入到命名的客戶端。可以通過指定Ribbon客戶端的名稱,在啟動時,可以更改此延遲載入行為,從而熱切載入這些子應用程式上下文。

application.yml ribbon: eager-load: enabled: true clients: client1, client2, client3 宣告性REST客戶端:Feign Feign是一個宣告式的Web服務客戶端。這使得Web服務客戶端的寫入更加方便 要使用Feign建立一個介面並對其進行註釋。它具有可插入註釋支援,包括Feign註釋和JAX-RS註釋。Feign還支援可插拔編碼器和解碼器。Spring Cloud增加了對Spring MVC註釋的支援,並使用Spring Web中預設使用的HttpMessageConverters。Spring Cloud整合Ribbon和Eureka以在使用Feign時提供負載均衡的http客戶端。

如何加入Feign

要在您的專案中包含Feign,請使用組org.springframework.cloud和工件ID spring-cloud-starter-feign的啟動器。有關 使用當前的Spring Cloud釋出列表設定構建系統的詳細資訊,請參閱Spring Cloud專案頁面。

示例spring boot應用

@Configuration @ComponentScan @EnableAutoConfiguration @EnableEurekaClient @EnableFeignClients public class Application {

public static void main(String[] args) {
    SpringApplication.run(Application.class, args);
}
複製程式碼

} StoreClient.java @FeignClient("stores") public interface StoreClient { @RequestMapping(method = RequestMethod.GET, value = "/stores") List getStores();

@RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json")
Store update(@PathVariable("storeId") Long storeId, Store store);
複製程式碼

} 在@FeignClient註釋中,String值(以上“儲存”)是一個任意的客戶端名稱,用於建立Ribbon負載平衡器(有關Ribbon支援的詳細資訊,請參閱下文))。您還可以使用url屬性(絕對值或只是主機名)指定URL。應用程式上下文中的bean的名稱是該介面的完全限定名稱。要指定您自己的別名值,您可以使用@FeignClient註釋的qualifier值。

以上的Ribbon客戶端將會發現“商店”服務的實體地址。如果您的應用程式是Eureka客戶端,那麼它將解析Eureka服務登錄檔中的服務。如果您不想使用Eureka,您可以簡單地配置外部配置中的伺服器列表(例如,參見 上文)。

Spring Cloud Netflix—宣告性REST客戶端:Feign

原始碼來源:http://minglisoft.cn/honghu/technology.html

相關文章