Spring启动application.properties扩展了另一个属性文件

前端之家收集整理的这篇文章主要介绍了Spring启动application.properties扩展了另一个属性文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在一个属性文件中有几个属性,我想继承到应用程序属性.如果春季靴子可以,请告知.

就像是

application.properties
----------------------
extends = otherproperty.properties
property1 = value1
property2= value2
property3 = value3

otherproperty.properties
------------------------
property4=value4
property5 = value5

加载spring boot app时,我想要使用@Value注释加载所有5个属性并使其可用. spring boot会自动选择classpath中的application.properties,而我没有applicaitoncontext xml或任何属性加载器代码.

提前致谢.

最佳答案
对我来说,在application.properties文件中运行spring.profiles.include = p1,p2,p3
原文链接:https://www.f2er.com/spring/431829.html

猜你在找的Spring相关文章