啓動服務器:java
$ cd spring-cloud-config-server $ ../mvnw spring-boot:run
該服務器是一個Spring Boot應用程序,因此您能夠從IDE運行它,而不是喜歡(主類是ConfigServerApplication
)。而後嘗試一個客戶端:git
$ curl localhost:8888/foo/development {"name":"development","label":"master","propertySources":[ {"name":"https://github.com/scratches/config-repo/foo-development.properties","source":{"bar":"spam"}}, {"name":"https://github.com/scratches/config-repo/foo.properties","source":{"foo":"bar"}} ]}
定位資源的默認策略是克隆一個git倉庫(在spring.cloud.config.server.git.uri
),並使用它來初始化一個迷你SpringApplication
。小應用程序的Environment
用於枚舉屬性源並經過JSON端點發布。github
HTTP服務具備如下格式的資源:spring
/{application}/{profile}[/{label}] /{application}-{profile}.yml /{label}/{application}-{profile}.yml /{application}-{profile}.properties /{label}/{application}-{profile}.properties
其中「應用程序」做爲SpringApplication
中的spring.config.name
注入(即常規的Spring Boot應用程序中一般是「應用程序」),「配置文件」是活動配置文件(或逗號分隔列表的屬性),「label」是可選的git標籤(默認爲「master」)。服務器
Spring Cloud Config服務器從git存儲庫(必須提供)爲遠程客戶端提供配置app
spring: cloud: config: server: git: uri: https://github.com/spring-cloud-samples/config-repo
完整項目的源碼來源 技術支持求求1791743380curl