我为我的应用程序安装了一个spring cloud服务器,在启动时提供公共属性文件.
"正常"功能正常运行.应用程序获取文件层次结构并获得对加载参数的完全访问权限.
Application.properties Application-.properties .properties ...
现在的问题是:如何在通用命名旁边加载配置文件?
如果我在repositoy中存储另一个文件,例如sharedCommonServers.properties,如何使用配置服务器另外加载此文件?此文件包含某些但不是所有程序使用的属性.
先感谢您!
亨德里克
好的,至少我找到了一个解决方案:
我采用了云配置的正常应用程序上下文.在此上下文中,我将文件sharedCommonServers.properties作为具有特殊配置文件的默认应用程序属性文件.
重命名:
'sharedCommonServers.properties' to 'application-commonServers.properties'
通过使用'commonServers'扩展配置文件设置,spring cloud配置另外提取它.
请注意,其他配置文件行中没有重叠的属性键.
所以在我的环境中,当我设置...
-Dspring.profiles.active=prod,commonServers'
...我得到了我的默认prod配置和那些标记为'commonServers'的配置文件.
application.properties application-prod.properties application-commonServers.properties // the additional one.properties -prod.properties // and -commonServers.properties if I would need it
感谢您的建议和想法!