在跟我學Spring Cloud(Finchley版)-19-配置中心-Spring Cloud Config 一節中,已實現使用Git倉庫做爲Config Server的後端存儲,本節詳細探討如何配置Git倉庫。git
Config Server的佔位符支持{application}、{profile}和{label}。github
示例:spring
server: port: 8080 spring: application: name: microservice-config-server cloud: config: server: git: uri: https://git.oschina.net/itmuch/{application} username: password:
使用這種方式,便可輕鬆支持一個應用對應一個Git倉庫。同理,也可支持一個profile對應一個Git倉庫。後端
模式匹配指的是帶有通配符的{application}/{profile}名稱的列表。若是{application}/{profile}不匹配任何模式,它將會使用spring.cloud.config.server.git.uri
定義的URI。app
spring: cloud: config: server: git: uri: https://github.com/spring-cloud-samples/config-repo repos: simple: https://github.com/simple/config-repo special: pattern: special*/dev*,*special*/dev* uri: https://github.com/special/config-repo local: pattern: local* uri: file:/home/configsvc/config-repo
該例中,對於simple倉庫,它只匹配全部配置文件中名爲simple的應用程序,它的模式等同於simple/*
。local倉庫則匹配全部配置文件中以local開頭的全部應用程序的名稱。.net
不少場景下,咱們可能把配置文件放在了Git倉庫子目錄中,此時可使用search-paths指定,search-path一樣支持佔位符。日誌
spring: cloud: config: server: git: uri: http://git.oschina.net/itmuch/spring-cloud-config-repo search-paths: foo,bar*
這樣,Config Server就會在Git倉庫根目錄、foo子目錄、以及全部以bar開始的子目錄中查找配置文件。code
默認狀況下,在配置被首次請求時,Config Server纔會clone Git倉庫。咱們也可以讓Config Server在啓動時就clone Git倉庫,例如。server
spring: cloud: config: server: git: uri: https://github.com/spring-cloud-samples/config-repo repos: team-a: pattern: microservice-* clone-on-start: true uri: http://git.oschina.net/itmuch/spring-cloud-config-repo
將屬性spring.cloud.config.server.git.repos.*.clone-on-start
設爲true,便可讓Config Server啓動時clone指定Git倉庫。ci
固然,也可以使用spring.cloud.config.server.git.clone-on-start = true
進行全局配置。
配置clone-on-start = true,可幫助Config Server啓動時快速識別錯誤的配置源(例如無效的Git倉庫)。
將如下包的日誌級別設爲DEBUG,便可打印Config Server請求Git倉庫的細節。咱們可藉助日誌,更好地理解Config Server的Git倉庫配置,同時,也便於咱們快速定位問題。
logging: level: org.springframework.cloud: DEBUG org.springframework.boot: DEBUG
http://www.itmuch.com/spring-cloud/finchley-20/