我遇到了 Spring Cloud Config 的问题。我有一个带有我的配置文件的远程 git repo,它被克隆到本地以进行本地测试。
我的项目有 4 个 bootstrap.yml 文件,如下所示
引导程序.yml
spring:
application:
name: ConfigurationService
profiles:
active: dev, local
cloud:
config:
fail-fast: true
server:
git:
clone-on-start: true
search-paths: '{application}'
username: USERNAME
password: PASSWORD
bootstrap: true
enabled: true
引导-dev.yml
spring:
application:
name: ConfigurationService
profiles:
active: dev, local
cloud:
config:
label: develop
server:
port: 0
引导本地.yml
spring:
cloud:
config:
server:
git:
uri: file:///${user.home}/Projects/project
clone-on-start: false
引导远程.yml
spring:
cloud:
config:
server:
git:
uri: https://bitbucket.org/
clone-on-start: true
远程仓库有一个主分支和一个开发分支。当我在本地结帐开发并启动我的配置服务时,它会签出主分支。
为什么会发生这种情况,我该如何阻止它?我正在开发配置文件和本地配置文件中启动配置服务,该配置文件使用 bootstrap-dev.yml 中看到的“开发”标签。