在本文中,咱們將學習如何構建一個基於Git存儲的分佈式配置中心,並對客戶端進行改造,並讓其可以從配置中心獲取配置信息並綁定到代碼中的整個過程。git
準備一個git倉庫,能夠在碼雲或Github上建立均可以。web
假設咱們讀取配置中心的應用名爲config-client
,那麼咱們能夠在git倉庫中該項目的默認配置文件config-client.yml
:spring
info:bootstrap
profile: default瀏覽器
config-client-dev.yml
:info:架構
profile: devapp
經過Spring Cloud Config來構建一個分佈式配置中心很是簡單,只須要三步:框架
config-server-git
,並在pom.xml
中引入下面的依賴(省略了parent和dependencyManagement部分):<dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> </dependencies>
建立Spring Boot的程序主類,並添加@EnableConfigServer
註解,開啓Spring Cloud Config的服務端功能。分佈式
@EnableConfigServer @SpringBootApplication public class Application { public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(true).run(args); } }
application.yml
中添加配置服務的基本信息以及Git倉庫的相關信息,例如:spring application: name: config-server cloud: config: server: git: uri: http://git.oschina.net/didispace/config-repo-demo/ server: port: 1201
到這裏,使用一個經過Spring Cloud Config實現,並使用Git管理配置內容的分佈式配置中心就已經完成了。咱們能夠將該應用先啓動起來,確保沒有錯誤產生,而後再嘗試下面的內容。spring-boot
若是咱們的Git倉庫須要權限訪問,那麼能夠經過配置下面的兩個屬性來實現;
spring.cloud.config.server.git.username:訪問Git倉庫的用戶名
spring.cloud.config.server.git.password:訪問Git倉庫的用戶密碼
完成了這些準備工做以後,咱們就能夠經過瀏覽器、POSTMAN或CURL等工具直接來訪問到咱們的配置內容了。訪問配置信息的URL與配置文件的映射關係以下:
/{application}/{profile}[/{label}] /{application}-{profile}.yml /{label}/{application}-{profile}.yml /{application}-{profile}.properties /{label}/{application}-{profile}.properties
上面的url會映射{application}-{profile}.properties
對應的配置文件,其中{label}
對應Git上不一樣的分支,默認爲master。咱們能夠嘗試構造不一樣的url來訪問不一樣的配置內容,好比,要訪問master分支,config-client應用的dev環境,就能夠訪問這個url:http://localhost:1201/config-client/dev/master
,並得到以下返回:
{ "name": "config-client", "profiles": [ "dev" ], "label": "master", "version": null, "state": null, "propertySources": [ { "name": "http://git.oschina.net/didispace/config-repo-demo/config-client-dev.yml", "source": { "info.profile": "dev" } }, { "name": "http://git.oschina.net/didispace/config-repo-demo/config-client.yml", "source": { "info.profile": "default" } } ] }
咱們能夠看到該Json中返回了應用名:config-client,環境名:dev,分支名:master,以及default環境和dev環境的配置內容。
在完成了上述驗證以後,肯定配置服務中心已經正常運做,下面咱們嘗試如何在微服務應用中獲取上述的配置信息。
config-client
,並在pom.xml
中引入下述依賴:<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency> </dependencies>
@SpringBootApplication public class Application { public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(true).run(args); } }
bootstrap.yml
配置,來指定獲取配置文件的config-server-git
位置,例如:spring: application: name: config-client cloud: config: uri: http://localhost:1201/ profile: default label: master server: port: 2001
上述配置參數與Git中存儲的配置文件中各個部分的對應關係以下:
{application}
部分{profile}
部分{label}
部分config-server
的地址這裏須要格外注意:上面這些屬性必須配置在bootstrap.properties中,這樣config-server中的配置信息才能被正確加載。
在完成了上面你的代碼編寫以後,讀者能夠將config-server-git、config-client都啓動起來
{
"profile": "default"
}
另外,咱們也能夠修改config-client的profile爲dev來觀察加載配置的變化。 從如今開始,我這邊會將近期研發的springcloud微服務雲架構的搭建過程和精髓記錄下來,幫助更多有興趣研發spring cloud框架的朋友,但願能夠幫助更多的好學者。你們來一塊兒探討spring cloud架構的搭建過程及如何運用於企業項目。