直接使用Ribbon API 您也能夠直接使用LoadBalancerClient。例: public class MyClass { @Autowired private LoadBalancerClient loadBalancer;html
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配置java
每一個Ribbon命名的客戶端都有一個相應的子應用程序上下文,Spring Cloud維護,這個應用程序上下文在第一個請求中被延遲加載到命名的客戶端。能夠經過指定Ribbon客戶端的名稱,在啓動時,能夠更改此延遲加載行爲,從而熱切加載這些子應用程序上下文。spring
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客戶端。json
如何加入Feign緩存
要在您的項目中包含Feign,請使用組org.springframework.cloud和工件ID spring-cloud-starter-feign的啓動器。有關 使用當前的Spring Cloud發佈列表設置構建系統的詳細信息,請參閱Spring Cloud項目頁面。服務器
示例spring boot應用app
@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值。url
以上的Ribbon客戶端將會發現「商店」服務的物理地址。若是您的應用程序是Eureka客戶端,那麼它將解析Eureka服務註冊表中的服務。若是您不想使用Eureka,您能夠簡單地配置外部配置中的服務器列表(例如,參見 上文)。
源碼來源:http://minglisoft.cn/honghu/technology.html