SpringApplication
loads properties from application.properties
files in the following locations and adds them to the Spring Environment
:
-
A
/config
subdirectory of the current directory -
The current directory
-
A classpath
/config
package -
The classpath root
-----------------------------------------------------------------------------------
-
file:./config/
-
file:./
-
classpath:/config/
-
classpath:/
-----------------------------------------------------------------------------------
指定spring.config.additional-location,客户自定义目录
-
file:./custom-config/
-
classpath:custom-config/
-
file:./config/
-
file:./
-
classpath:/config/
-
classpath:/
-----------------------------------------------------------------------------------
program argument > jvm options > 操作系统环境变量
-----------------------------------------------------------------------------------