小编典典

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

spring-boot

我要继承到应用程序属性的一个属性文件中没有几个属性。请告知在Spring Boot时是否可行。

就像是

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

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

加载Spring Boot应用程序时,我希望所有5个属性都应加载并可以使用@Value注释使用。Spring
Boot会自动在类路径中选择application.properties,而我没有applicaitoncontext xml或任何属性加载器代码。

提前致谢。


阅读 474

收藏
2020-05-30

共1个答案

小编典典

对我来说spring.profiles.include=p1,p2,p3application.properties档案工作

2020-05-30