跟我学习Spring Cloud Config - 快速开始
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跟我学习Spring Cloud Config - 快速开始相关的知识,希望对你有一定的参考价值。
启动服务器:
$ cd spring-cloud-config-server $ ../mvnw spring-boot:run
该服务器是一个Spring Boot应用程序,所以你可以从IDE运行它,而不是喜欢(主类是ConfigServerApplication
)。然后尝试一个客户端:
$ 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端点发布。
HTTP服务具有以下格式的资源:
/{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存储库中提取远程客户端的配置(必须提供):
spring: cloud: config: server: git: uri: https://github.com/spring-cloud-samples/config-repo
更多资料和源码来源
以上是关于跟我学习Spring Cloud Config - 快速开始的主要内容,如果未能解决你的问题,请参考以下文章
跟我学习Spring Cloud之客户端负载平衡器:Ribbon
跟我学Spring Cloud(Finchley版)-20-Spring Cloud Config-