Spring cloud config 文件加载环境

1、config 默认git加载

通过spring.cloud.config.server.git.uri指定配置信息存储的git地址,比如:https://github.com/spring-cloud-samples/config-repo

2、加载本地开发环境

### config server native
spring.profiles.active=native
spring.cloud.config.server.native.searchLocations=classpath:/config

3、加载 本地物理环境

spring.profiles.active=native
spring.cloud.config.server.native.searchLocations=file:E:\\java\\Workspaces\\sts\\doc\\file\\config


4、加载svn环境  http://localhost:8888/{application}/{profile}/{label},比如:http://localhost:8888/dmeo/development/trunk

### config server svn
spring.cloud.config.server.svn.uri=http://localhost:8888/dmeo/development/trunk
spring.cloud.config.server.svn.username=xxx
spring.cloud.config.server.svn.password=xxx
spring.profiles.active=subversion


暂时用到了这几个环境,其他环境用到了在加上。

猜你喜欢

转载自blog.csdn.net/fww445231202/article/details/52485830
今日推荐