java - Spring Cloud Config Globals -
i have scenario need set properties globally several applications. there support default or global configs in spring cloud config?
example:
#default.properties setting=global_setting #myapp.properties something_else=app_setting #anotherapp.properties prop=different_app_setting
here want "myapp" have setting set. appreciated. thanks!
according the documentation properties in application.yml
or application.properties
available every application.
Comments
Post a Comment