spring cloud配置中心常用配置

 1 配置中心    

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

 特別注意  svn 環境 需要 引入 SVN jar包 

<groupId>org.tmatesoft.svnkit</groupId>
<artifactId>svnkit</artifactId>

發佈了61 篇原創文章 · 獲贊 35 · 訪問量 18萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章