我要继承到应用程序属性的一个属性文件中没有几个属性。请告知在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或任何属性加载器代码。
提前致谢。
对我来说spring.profiles.include=p1,p2,p3是application.properties档案工作
spring.profiles.include=p1,p2,p3
application.properties