我有一个配置服务器启动并运行,相关的 application.yml 设置为
spring:
application:
name: config
...
searchPaths:
- '{application}'
- '{application}/{profile}'
我想访问一个不是的文件,application.properties
例如myfile.txt
. 如果我有 git 布局
/myapp/nested/folder/myfile.txt
我希望能够访问该文件。根据Spring Config Server docs,我应该可以通过 来做到这一点/{name}/{profile}/{label}/{path}
,但我无法获得任何工作路径。
TL;DR:如何通过配置服务器从 git 存储库中检索嵌套的配置文件?