本文介紹SpringBoot如何使用阿里巴巴Nacos作配置中心。java
Nacos是阿里巴巴集團開源的一個易於使用的平臺,專爲動態服務發現,配置和服務管理而設計。它能夠幫助您輕鬆構建雲本機應用程序和微服務平臺。git
Nacos基本上支持如今全部類型的服務,例如,Dubbo / gRPC服務,Spring Cloud RESTFul服務或Kubernetes服務。github
尤爲是使用Eureka註冊中心的,而且擔憂Eureka閉源的開發者們,能夠將註冊中心修改成Nacos,本文主要介紹Nacos配置中心的使用。web
Nacos官網以下圖所示,官網地址nacos.io/zh-cn/spring
Nacos安裝能夠採用以下兩種方式:apache
本文簡單介紹一下第二種方式,到Nacos的穩定版本下載地址github.com/alibaba/nac…,下載最新版,本文下的是tag.gz文件,下載後解壓即安裝完成,而後進入解壓目錄後的bin目錄執行以下命令啓動Nacos。api
sh startup.sh -m standalone
複製代碼
啓動能夠看到控制檯如圖所示,端口號是8848(好像是由於珠穆朗瑪峯的高度),版本0.8.0等等信息。springboot
接下來,建立項目,項目中加入使用Nacos配置中心的依賴nacos-config-spring-boot-starter,完整pom文件如代碼所示。bash
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.dalaoyang</groupId>
<artifactId>springboot2_nacos_config</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>springboot2_nacos_config</name>
<description>springboot2_nacos_config</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.alibaba.boot/nacos-config-spring-boot-starter -->
<dependency>
<groupId>com.alibaba.boot</groupId>
<artifactId>nacos-config-spring-boot-starter</artifactId>
<version>0.2.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
複製代碼
配置文件中須要配置Nacos服務的地址,以下所示。app
spring.application.name=springboot2-nacos-config
nacos.config.server-addr=127.0.0.1:8848
複製代碼
在啓動類,加入@NacosPropertySource註解其中包含兩個屬性,以下:
在使用Nacos作配置中心後,須要使用@NacosValue註解獲取配置,使用方式與@Value同樣,完整啓動類代碼以下所示。
package com.dalaoyang;
import com.alibaba.nacos.api.config.annotation.NacosValue;
import com.alibaba.nacos.spring.context.annotation.config.NacosPropertySource;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@NacosPropertySource(dataId = "springboot2-nacos-config", autoRefreshed = true)
@RestController
public class Springboot2NacosConfigApplication {
public static void main(String[] args) {
SpringApplication.run(Springboot2NacosConfigApplication.class, args);
}
@NacosValue(value = "${nacos.test.propertie:123}", autoRefreshed = true)
private String testProperties;
@GetMapping("/test")
public String test(){
return testProperties;
}
}
複製代碼
因爲本文只是簡單示例使用Nacos作配置中心,因此將啓動類加了一個MVC方法,做爲輸出配置信息進行測試,這個測試的配置給了一個默認值123,啓動項目,訪問http://localhost:8080/test,能夠看到以下所示:
訪問Nacos服務,http://localhost:8848/nacos/#/login,默認狀況用戶名密碼都是nacos,登陸頁如圖所示。
登陸後如圖所示。
接下來點擊右側加號,添加咱們剛剛建立的data id 的服務,並將配置由123修改成111,如圖所示。
而後點擊右下角發佈按鈕,再次訪問http://localhost:8080/test如圖所示。
到這裏SpringBoot使用Nacos配置中心就完成了,感興趣能夠查看源碼仔細研究。