我在引用配置服务器上的应用程序/配置文件时遇到问题。我已经准备好了一个 GAIA DEV 池。
这是我到目前为止所做的 -
创建了一个
application.yml
具有所需配置属性的文件hello-service: message: Hello World From Spring Cloud Config Server
在 git repo -
feature/cs-hello
分支中检查了它。登录到开发池
cf login -a [dev-pool-url]
创建了配置服务器:
cf create-service -c "{\"git\": { \"label\": \"feature/cs-hello\", \"uri\": \""[GIT HTTPS URL]\", \"username\": \"[USERNAME]\", \"password\": \"[PASSWORD]\" } }" p-config-server standard config-server
现在,我指的是 [ https://docs.pivotal.io/spring-cloud-services/1-4/common/config-server/configuring-with-git.html] - 因为我的配置文件不在主分支上,我用过label
。
不知何故,我的代码在配置服务器上找不到应用程序文件。
这里有谁能给我指个方向吗?