spring-cloud-config 配置中心實(shí)現(xiàn)
成都創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比向陽網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式向陽網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋向陽地區(qū)。費(fèi)用合理售后完善,10多年實(shí)體公司更值得信賴。
Spring Cloud Config 用于為分布式系統(tǒng)中的基礎(chǔ)設(shè)施和微服務(wù)應(yīng)用提供集中化的外部配置支持,分為server端和client端。
server端為分布式配置中心,是一個(gè)獨(dú)立的微服務(wù)應(yīng)用;client端為分布式系統(tǒng)中的基礎(chǔ)設(shè)置或微服務(wù)應(yīng)用,通過指定配置中心來管理相關(guān)的配置。
Spring Cloud Config 構(gòu)建的配置中心,除了適用于 Spring 構(gòu)建的應(yīng)用外,也可以在任何其他語言構(gòu)建的應(yīng)用中使用。
Spring Cloud Config 默認(rèn)采用 Git 存儲(chǔ)配置信息,支持對(duì)配置信息的版本管理。
本示例主要內(nèi)容
Spring Cloud Config 特點(diǎn)
代碼構(gòu)建
server端實(shí)現(xiàn)
1.pom.xml添加maven依賴
org.springframework.cloud spring-cloud-config-server
2.application.yml配置
server: port: 8001 spring: application: name: cloud-config-server cloud: config: server: git: uri: https://gitee.com/tqlin/spring-boot-demo.git #因?yàn)間ithub有時(shí)候不穩(wěn)定,我這里改到了碼云倉 searchPaths: /cloud-config/config-repo/ #配置文件目錄 force-pull: true
3.CloudConfigServerApplication.java啟動(dòng)類
@EnableConfigServer @SpringBootApplication public class CloudConfigServerApplication { public static void main(String[] args) { SpringApplication.run(CloudConfigServerApplication.class, args); } }
client端實(shí)現(xiàn)
1.pom.xml添加maven依賴
org.springframework.cloud spring-cloud-starter-config org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test
2.bootstrap.properties配置文件
spring.cloud.config.name=easy-config spring.cloud.config.profile=test spring.cloud.config.uri=http://localhost:8001/ spring.cloud.config.label=master
特別注意:Spring Cloud 構(gòu)建于 Spring Boot 之上,在 Spring Boot 中有兩種上下文,一種是 bootstrap, 另外一種是 application, bootstrap 是應(yīng)用程序的父上下文,也就是說 bootstrap 加載優(yōu)先于 applicaton。bootstrap 主要用于從額外的資源來加載配置信息,還可以在本地外部配置文件中解密屬性。
這兩個(gè)上下文共用一個(gè)環(huán)境,它是任何Spring應(yīng)用程序的外部屬性的來源。bootstrap 里面的屬性會(huì)優(yōu)先加載,它們默認(rèn)也不能被本地相同配置覆蓋。
3.application.properties配置文件
spring.application.name=cloud-config-client server.port=8002
運(yùn)行示例
1.首先在碼云上面創(chuàng)建一個(gè)文件夾config-repo用來存放配置文件,我們創(chuàng)建以下三個(gè)配置文件:
// 開發(fā)環(huán)境 easy-config-dev.properties 內(nèi)容為:easy.hello=dev config // 測(cè)試環(huán)境 easy-config-test.properties 內(nèi)容為:easy.hello=test config // 生產(chǎn)環(huán)境 easy-config-pro.properties 內(nèi)容為:easy.hello=pro config
根據(jù)上面構(gòu)建的代碼指定的項(xiàng)目地址為:https://gitee.com/tqlin/spring-boot-demo.git 目錄為: /cloud-config/config-repo/
2.分別運(yùn)行server端和client端
找到CloudConfigServerApplication.java、CloudConfigClientApplication.java分別運(yùn)行
3.測(cè)試server端
直接訪問:http://localhost:8001/easy-config/dev
我們看到成功返回了開發(fā)配置文件信息
{ name: "easy-config", profiles: [ "dev" ], label: null, version: "6053b4c1c2343ac27e822b2a9b60c6343be72f96", state: null, propertySources: [ { name: "https://gitee.com/tqlin/spring-boot-demo.git/cloud-config/config-repo/easy-config-dev.properties", source: { easy.hello: "dev config" } } ] }
訪問:http://localhost:8001/easy-config/test、http://localhost:8001/easy-config/pro,相應(yīng)的會(huì)返回測(cè)試及正式環(huán)境的配置
倉庫中的配置文件會(huì)被轉(zhuǎn)換成web接口,訪問可以參照以下的規(guī)則:
以easy-config-dev.properties為例子,它的application是easy-config,profile是dev。client會(huì)根據(jù)填寫的參數(shù)來選擇讀取對(duì)應(yīng)的配置。
4.測(cè)試client端
訪問:http://localhost:8002/hello 我們發(fā)現(xiàn)界面成功返回了 test config,說明測(cè)試配置文件client端讀取成功了
我們修改bootstrap.properties配置的spring.cloud.config.profile的值為dev,重啟client端,訪問:http://localhost:8002/hello 這時(shí)候界面返回 dev config,表示開發(fā)配置訪問成功。
資料
Spring Cloud Config 示例源碼
官網(wǎng)文檔
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。