我正在使用Spring配置服务器的GIT后端。我想从特定文件夹加载所有属性文件。像下面一样
--/app1
|--dev
| |-- a.yml, b.yml
|--stage
| |-- a.yml, b.yml
尝试了此配置
spring.could.config.server.git.searchPaths='{application}/{profile}'
我希望http://localhost:8888/app1/dev[/master]给我
"name": "app1",
"profiles": [
"master"
],
"label": "master",
"version": "a611374438e75aa1b9808908c57833480944e1a8",
"state": null,
"propertySources": [
{
"name": "https://g .../a.yml",
"source":{}
},
{
"name": "https://g .../b.yml",
"source":{}
}
]
}
有什么方法可以做到这一点?