EDAS提供了Nacos的商用版本註冊中心,使用Nacos作為註冊中心開發的應用無需修改任何代碼,部署到EDAS後,即可使用EDAS提供的共用註冊中心。本文介紹如何在本地基於Nacos開發一對Spring Cloud微服務樣本應用(包含一個服務提供者Provider和一個服務消費者Consumer)。
背景資訊
微服務應用通過註冊中心實現服務註冊與發現。在開發應用時,可以根據實際需求,參考下圖選擇註冊中心。
您可以使用本文介紹的Nacos作為註冊中心實現應用的服務註冊與發現,也可以使用自建或MSE託管的Eureka、ZooKeeper和Consul等其它類型的註冊中心。無論使用哪種類型的註冊中心,在將應用部署到EDAS之後,都可以使用EDAS提供的應用託管、微服務治理及雲原生PaaS平台能力。
您可以按照本文的內容實現應用的服務註冊與發現,也可以直接下載應用Demo:service-provider和service-consumer。
準備工作
在開始開發前,請確保您已經完成以下工作。
- 下載Maven並設定環境變數。
- 下載最新版本的Nacos Server。
- 按以下步驟啟動Nacos Server。
- 解壓下載的Nacos Server壓縮包。
- 進入
nacos/bin
目錄,啟動Nacos Server。- Linux/Unix/Mac系統:執行命令
sudo sh startup.sh -m standalone
。 - Windows系統:雙擊執行
startup.cmd
檔案。
- Linux/Unix/Mac系統:執行命令
建立服務提供者
在本地建立服務提供者應用工程,添加依賴,開啟服務註冊與發現功能,並將註冊中心指定為Nacos Server。
- 建立命名為
nacos-service-provider
的Maven工程。 - 在
pom.xml
檔案中添加依賴。以Spring Boot 2.1.4.RELEASE和Spring Cloud Greenwich.SR1為例,依賴如下:
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.4.RELEASE</version> <relativePath/> </parent> <dependencies> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> <version>2.1.1.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Greenwich.SR1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
樣本中使用的版本為Spring Cloud Greenwich,對應Spring Cloud Alibaba版本為2.1.1.RELEASE。
- 如果使用Spring Cloud Finchley版本,對應Spring Cloud Alibaba版本為2.0.1.RELEASE。
- 如果使用Spring Cloud Edgware版本,對應Spring Cloud Alibaba版本為1.5.1.RELEASE。說明 Spring Cloud Edgware版本的生命週期已結束,不推薦使用該版本開發應用。
- 在
src\main\java
下建立Packagecom.aliware.edas
。 - 在Package
com.aliware.edas
中建立服務提供者的啟動類ProviderApplication
,並添加以下代碼。其中
@EnableDiscoveryClient
註解表明此應用需開啟服務註冊與發現功能。package com.aliware.edas; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @SpringBootApplication @EnableDiscoveryClient public class ProviderApplication { public static void main(String[] args) { SpringApplication.run(ProviderApplication.class, args); } }
- 在Package
com.aliware.edas
中建立EchoController
。EchoController
中,指定URL mapping為/echo/{string}
,指定HTTP方法為GET,從URL路徑中擷取方法參數,並回顯收到的參數。package com.aliware.edas; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; @RestController public class EchoController { @RequestMapping(value = "/echo/{string}", method = RequestMethod.GET) public String echo(@PathVariable String string) { return string; } }
- 在
src\main\resources
路徑下建立檔案application.properties
,在application.properties
中添加如下配置,指定Nacos Server的地址。spring.application.name=service-provider server.port=18081 spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848
其中
127.0.0.1
為Nacos Server的地址。如果您的Nacos Server部署在另外一台機器,則需要修改成對應的IP地址。如果有其它需求,可以在application.properties
檔案中增加配置。更多資訊,請參見配置項參考。 - 驗證結果。
- 執行
nacos-service-provider
中ProviderApplication
的main
函數,啟動應用。 - 登入本地啟動的Nacos Server控制台
http://127.0.0.1:8848/nacos
。本地Nacos控制台的預設使用者名和密碼同為nacos。 - 在左側導覽列選擇服務管理 > 服務列表。可以看到服務列表中已經包含了
service-provider
,且在詳情中可以查詢該服務的詳情。
- 執行
建立服務消費者
本節除介紹服務註冊的功能,還將介紹Nacos服務與RestTemplate和FeignClient兩個用戶端如何配合使用。
- 建立命名為
nacos-service-consumer
的Maven工程。 - 在
pom.xml
中添加依賴。<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.4.RELEASE</version> <relativePath/> </parent> <dependencies> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> <version>2.1.1.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Greenwich.SR1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
- 在
src\main\java
下建立Packagecom.aliware.edas
。 - 在Package
com.aliware.edas
中配置RestTemplate和FeignClient。- 在Package
com.aliware.edas
中建立一個介面類EchoService
,添加@FeignClient
註解,並配置對應的HTTP URL地址及HTTP方法。package com.aliware.edas; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @FeignClient(name = "service-provider") public interface EchoService { @RequestMapping(value = "/echo/{str}", method = RequestMethod.GET) String echo(@PathVariable("str") String str); }
- 在Package
com.aliware.edas
中建立啟動類ConsumerApplication
並添加相關配置。- 使用
@EnableDiscoveryClient
註解啟用服務註冊與發現。 - 使用
@EnableFeignClients
註解啟用FeignClient。 - 添加
@LoadBalanced
註解將RestTemplate與服務發現整合。
package com.aliware.edas; 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.cloud.openfeign.EnableFeignClients; import org.springframework.context.annotation.Bean; import org.springframework.web.client.RestTemplate; @SpringBootApplication @EnableDiscoveryClient @EnableFeignClients public class ConsumerApplication { @LoadBalanced @Bean public RestTemplate restTemplate() { return new RestTemplate(); } public static void main(String[] args) { SpringApplication.run(ConsumerApplication.class, args); } }
- 使用
- 在Package
- 在Package
com.aliware.edas
中建立類TestController
以示範和驗證服務發現功能。package com.aliware.edas; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.client.RestTemplate; @RestController public class TestController { @Autowired private RestTemplate restTemplate; @Autowired private EchoService echoService; @RequestMapping(value = "/echo-rest/{str}", method = RequestMethod.GET) public String rest(@PathVariable String str) { return restTemplate.getForObject("http://service-provider/echo/" + str, String.class); } @RequestMapping(value = "/echo-feign/{str}", method = RequestMethod.GET) public String feign(@PathVariable String str) { return echoService.echo(str); } }
- 在
src\main\resources
路徑下建立檔案application.properties
,在application.properties
中添加以下配置,指定Nacos Server的地址。spring.application.name=service-consumer server.port=18082 spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848
其中
127.0.0.1
為Nacos Server的地址。如果您的Nacos Server部署在另外一台機器,則需要修改成對應的IP地址。如果有其它需求,可以在application.properties
檔案中增加配置。更多資訊,請參見配置項參考。 - 驗證結果。
- 執行
nacos-service-consumer
中ConsumerApplication
的main
函數,啟動應用。 - 登入本地啟動的Nacos Server控制台
http://127.0.0.1:8848/nacos
。本地Nacos控制台的預設使用者名和密碼同為nacos。 - 在左側導覽列中選擇服務管理 > 服務列表,可以看到服務列表中已經包含了
service-consumer
,且在詳情中可以查詢該服務的詳情。
- 執行
本地測試
在本地測試消費者對提供者的服務調用結果。
- Linux/Unix/Mac系統:運行以下命令。
curl http://127.0.0.1:18082/echo-rest/rest-rest curl http://127.0.0.1:18082/echo-feign/feign-rest
- Windows系統:在瀏覽器中輸入http://127.0.0.1:18082/echo-rest/rest-rest和http://127.0.0.1:18082/echo-feign/feign-rest。
後續步驟
配置項參考
配置項 | Key | 預設值 | 說明 |
服務端地址 | spring.cloud.nacos.discovery.server-addr | 無 | Nacos Server啟動監聽的IP地址和連接埠。 |
服務名 | spring.cloud.nacos.discovery.service | ${spring.application.name} | 給當前的服務命名。 |
網卡名 | spring.cloud.nacos.discovery.network-interface | 無 | 當IP未配置時,註冊的IP為此網卡所對應的IP地址。如果網卡名也未配置,則預設取第一塊網卡的地址。 |
註冊的IP地址 | spring.cloud.nacos.discovery.ip | 無 | 優先順序最高。 |
註冊的連接埠 | spring.cloud.nacos.discovery.port | -1 | 預設情況下不用配置,系統會自動探測。 |
命名空間 | spring.cloud.nacos.discovery.namespace | 無 | 常用情境之一是隔離不同環境的資源,例如開發測試環境和生產環境的資源(如配置、服務)隔離等。 |
Metadata | spring.cloud.nacos.discovery.metadata | 無 | 使用Map格式配置,您可以根據自己的需求自訂一些和服務相關的中繼資料資訊。 |
叢集 | spring.cloud.nacos.discovery.cluster-name | DEFAULT | 配置成Nacos叢集名稱。 |
存取點 | spring.cloud.nacos.discovery.endpoint | UTF-8 | 地區的某個服務的入口網域名稱。通過此網域名稱可以動態地擷取服務端地址,此配置在部署到EDAS時無需填寫。 |
是否整合Ribbon | ribbon.nacos.enabled | true | 如果沒有明確需求,不需要修改。 |
更多關於Spring Cloud Alibaba Nacos Discovery的資訊,請參見開源版本的Nacos Discovery。