好比使用 *.yml 或者 *.propertiesjava
yml:git
testconfig: testvalue
properties:github
testconfig=testvalue
服務器配置文件:web
調用config server url後返回的json數據:spring
紅框中爲配置正確後解析樣子:json
不然沒法解析!bootstrap
在分佈式系統中,因爲服務數量巨多,爲了方便服務配置文件統一管理,實時更新,因此須要分佈式配置中心組件。在Spring Cloud中,有分佈式配置中心組件spring cloud config ,它支持配置服務放在配置服務的內存中(即本地),也支持放在遠程Git倉庫中。在spring cloud config 組件中,分兩個角色,一是config server,二是config client。springboot
建立一個spring-boot項目,取名爲config-server,pom.xml中引入依賴:服務器
<dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency> <!--表示爲web工程--> <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> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> </dependencies>
新建入口類BootApplication:app
import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.config.server.EnableConfigServer; @SpringBootApplication @EnableConfigServer public class BootApplication { public static void main(String[] args) { SpringApplication.run(BootApplication.class, args); } }
application.properties:
server.port=7010 spring.cloud.config.server.default-application-name=config-server # 配置git倉庫地址 spring.cloud.config.server.git.uri=https://github.com/shaweiwei/myspringcloudconfig # 配置倉庫路徑 spring.cloud.config.server.git.search-paths=myconfigpath # 配置倉庫的分支 spring.cloud.config.label=master # 訪問git倉庫的用戶名 spring.cloud.config.server.git.username=xxxxoooo # 訪問git倉庫的用戶密碼 若是Git倉庫爲公開倉庫,能夠不填寫用戶名和密碼,若是是私有倉庫須要填寫 spring.cloud.config.server.git.password=xxxxoooo
遠程倉庫https://github.com/shaweiwei/myspringcloudconfig/ 中有個文件config-client-dev.properties文件中有一個屬性:
myww=myww version 2
啓動程序:訪問http://localhost:7010/myww/dev
證實配置服務中心能夠從遠程程序獲取配置信息。
http請求地址和資源文件映射以下:
從新建立一個springboot項目,取名爲config-client,其pom文件引入依賴:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</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> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>
其配置文件bootstrap.properties:
# 和git裏的文件名對應 spring.application.name=config-client # 遠程倉庫的分支 spring.cloud.config.label=master # dev 開發環境配置文件 | test 測試環境 | pro 正式環境 # 和git裏的文件名對應 spring.cloud.config.profile=dev # 指明配置服務中心的網址 spring.cloud.config.uri= http://localhost:7010/ server.port=7020
程序的入口類,寫一個API接口「/hi」,返回從配置中心讀取的foo變量的值,代碼以下:
import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @SpringBootApplication @RestController public class BootApplication { public static void main(String[] args) { SpringApplication.run(BootApplication.class, args); } @Value("${myww}") // git配置文件裏的key String myww; @RequestMapping(value = "/hi") public String hi(){ return myww; } }
打開網址訪問:http://localhost:7020/hi,網頁顯示:
myww version 2
這就說明,config-client從config-server獲取了foo的屬性,而config-server是從git倉庫讀取的,如圖:
本文源碼:http://download.csdn.net/download/u013081610/10152869