Spring 云配置全局
Spring Cloud Config Globals
我有一个场景需要为多个应用程序全局设置一些属性。 spring 云配置中是否支持默认或全局配置?
示例:
#default.properties
setting=global_setting
#myapp.properties
something_else=app_setting
#anotherapp.properties
prop=different_app_setting
这里我希望 "myapp" 有设置。任何帮助将不胜感激。谢谢!
根据 the documentation,application.yml
或 application.properties
中的属性可用于每个应用程序。
我有一个场景需要为多个应用程序全局设置一些属性。 spring 云配置中是否支持默认或全局配置?
示例:
#default.properties
setting=global_setting
#myapp.properties
something_else=app_setting
#anotherapp.properties
prop=different_app_setting
这里我希望 "myapp" 有设置。任何帮助将不胜感激。谢谢!
根据 the documentation,application.yml
或 application.properties
中的属性可用于每个应用程序。