您好,登錄后才能下訂單哦!
這篇文章主要介紹Spring Cloud EureKa Ribbon中服務注冊發現與調用的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
概述
用一個簡單的例子演示Spring Cloud中EureKa和Ribbon的基本用法。
版本和環境
IDEA
Spring Boot 1.5.·0
JDK 1.8
Maven 3
構建eureka server
在Spring Cloud,可以使用eureka來管理微服務,微服務可以注冊到eureka中。
首先可以用IDEA的Spring Initialzr
來創建eureka server注冊中心。
修改application.properties文件,添加如下內容
spring.application.name=eureka-server eureka.instance.hostname=localhost eureka.client.register-with-eureka=false eureka.client.fetch-registry=false server.port=8881
在Spring Boot為我們生成的啟動類ServerApplication
中加入@EnableEurekaServer
注解
package com.springcloud.eureka; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @EnableEurekaServer @SpringBootApplication public class ServerApplication { public static void main(String[] args) { SpringApplication.run(ServerApplication.class, args); } }
在瀏覽器中輸入http://localhost:8881/
可以看到如下界面:
可以看到暫時還沒有服務注冊上來。到此,一個簡單的微服務注冊中心就構建完了。
編寫微服務userservice
接下來用rest構建一個微服務接口,并注冊到注冊中心上去。依然使用Spring Initialzr
來構建一個新的工程。使用方式跟上面的一樣。
注意這次要勾選Eureka Discovery
組件。而不是Eureka Server
。
修改application.properties文件,添加如下內容:
spring.application.name=user server.port=8882 eureka.client.service-url.defaultZone=http://localhost:8881/eureka/
在Spring Boot
為我們生成的UserApplication
類中使用@EnableDiscoveryClient
注解。
package com.springcloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @EnableDiscoveryClient @SpringBootApplication public class UserApplication { public static void main(String[] args) { SpringApplication.run(UserApplication.class, args); } }
創建一個rest full的微服務接口。
package com.springcloud; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class UserController { @GetMapping("/getUser") public String getUser() { return "I am user list."; } }
運行UserApplication后,再次訪問http://localhost:8881/
會發現user這個服務已經注冊上來了。
編寫微服務order
接下來,我們再構建一個訂單的微服務,并訪問user這個微服務中的接口。
依然使用Spring Initialzr
來構建一個新工程。user這個微服務是可以部署到多臺機器上的。客戶端在訪問這個服務的時候,請求可以路由到任何一臺部署了user服務的機器。因此客戶端需要使用一個路由算法來調度user這個服務。在Spring Cloud中,可以使用Ribbon組件來做客戶端路由。Ribbon內部會去服務注冊中心獲取服務列表的,以便調用對應的服務。
這次除了勾選Eureka Discovery
組件。還需要勾選Ribbon
。
修改application.properties文件,添加如下內容:
spring.application.name=order server.port=8883 eureka.client.service-url.defaultZone=http://localhost:8881/eureka/
在Spring Boot
為我們生成的OrderApplication
類中增加如下配置。
package com.springboot; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.cloud.client.loadbalancer.LoadBalanced; import org.springframework.context.annotation.Bean; import org.springframework.web.client.RestTemplate; @EnableDiscoveryClient @SpringBootApplication public class OrderApplication { @Bean @LoadBalanced RestTemplate restTemplate() { return new RestTemplate(); } public static void main(String[] args) { SpringApplication.run(OrderApplication.class, args); } }
由于使用了Ribbon,這里需要使用@LoadBalanced
注解。
編寫OrderController
。
package com.springboot; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.client.RestTemplate; @RestController public class OrderController { @Autowired private RestTemplate restTemplate; @GetMapping("/getOrderUser") public String getOrderUser() { return restTemplate.getForEntity("http://user/getUser",String.class).getBody(); } }
運行OrderApplication
后,訪問http://localhost:8881/
會發現order這個服務也被注冊到注冊中心了。
接下來我們訪問OrderController
中的getOrderUser
方法,觸發調用UserController
的getUser
方法。
在瀏覽器中輸入:http://localhost:8883/getOrderUser
可以看到返回了:I am user list.
以上是“Spring Cloud EureKa Ribbon中服務注冊發現與調用的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。