經過上一篇《Spring Cloud構建微服務架構:服務註冊與發現》,咱們已經成功地將服務提供者:eureka-client或consul-client註冊到了Eureka服務註冊中心或Consul服務端上了,同時咱們也經過
DiscoveryClient
接口的getServices
獲取了當前客戶端緩存的全部服務清單,那麼接下來咱們要學習的就是:如何去消費服務提供者的接口?java
在Spring Cloud Commons中提供了大量的與服務治理相關的抽象接口,包括DiscoveryClient
、這裏咱們即將介紹的LoadBalancerClient
等。對於這些接口的定義咱們在上一篇介紹服務註冊與發現時已經說過,Spring Cloud作這一層抽象,很好的解耦了服務治理體系,使得咱們能夠輕易的替換不一樣的服務治理設施。git
從LoadBalancerClient
接口的命名中,咱們就知道這是一個負載均衡客戶端的抽象定義,下面咱們就看看如何使用Spring Cloud提供的負載均衡器客戶端接口來實現服務的消費。github
下面的例子,咱們將利用上一篇中構建的eureka-server做爲服務註冊中心、eureka-client做爲服務提供者做爲基礎。web
咱們先來建立一個服務消費者工程,命名爲:eureka-consumer
。並在pom.xml
中引入依賴(這裏省略了parent和dependencyManagement的配置):spring
<dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> </dependencies>
配置application.properties
,指定eureka註冊中心的地址:緩存
spring.application.name=eureka-consumer server.port=2101 eureka.client.serviceUrl.defaultZone=http://localhost:1001/eureka/
建立應用主類。初始化RestTemplate
,用來真正發起REST請求。@EnableDiscoveryClient
註解用來將當前應用加入到服務治理體系中。架構
@EnableDiscoveryClient @SpringBootApplication public class Application { @Bean public RestTemplate restTemplate() { return new RestTemplate(); } public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(true).run(args); } }
建立一個接口用來消費eureka-client提供的接口:app
@RestController public class DcController { @Autowired LoadBalancerClient loadBalancerClient; @Autowired RestTemplate restTemplate; @GetMapping("/consumer") public String dc() { ServiceInstance serviceInstance = loadBalancerClient.choose("eureka-client"); String url = "http://" + serviceInstance.getHost() + ":" + serviceInstance.getPort() + "/dc"; System.out.println(url); return restTemplate.getForObject(url, String.class); } }
能夠看到這裏,咱們注入了LoadBalancerClient
和RestTemplate
,並在/consumer
接口的實現中,先經過loadBalancerClient
的choose
函數來負載均衡的選出一個eureka-client
的服務實例,這個服務實例的基本信息存儲在ServiceInstance
中,而後經過這些對象中的信息拼接出訪問/dc
接口的詳細地址,最後再利用RestTemplate
對象實現對服務提供者接口的調用。負載均衡
在完成了上面你的代碼編寫以後,讀者能夠將eureka-server、eureka-client、eureka-consumer都啓動起來,而後訪問http://localhost:2101/consumer ,來跟蹤觀察eureka-consumer服務是如何消費eureka-client服務的/dc
接口的。分佈式
consul版的示例,可查看git倉庫中的consul-client和consul-consumer
更多Spring Cloud內容請持續關注個人博客更新或在《Spring Cloud微服務實戰》中獲取。
樣例工程將沿用以前在碼雲和GitHub上建立的SpringCloud-Learning項目,從新作了一下整理。經過不一樣目錄來區分Brixton和Dalston的示例。
具體工程說明以下:
eureka的服務註冊中心:eureka-server
eureka的服務提供方:eureka-client
eureka的服務消費者:eureka-consumer
consul的服務提供方:consul-client
consul的服務消費者:consul-consumer