我已经看到,Spring配置服务器将显示为${spring.application.name}.yml。我的配置服务器中有两个文件,即test.yml和test-dev.yml。当我运行配置客户端时,它只选择其中一个文件。我想让它同时提取这两个文件。
${spring.application.name}.yml
test.yml
test-dev.yml
谢谢!
sigwle7e1#
这将放入您的客户端应用程序中
spring: application: name: <AppName> cloud: config: uri: <ConfigUrl> enabled: true fail-fast: true name: test,test-dev
1条答案
按热度按时间sigwle7e1#
这将放入您的客户端应用程序中