SpringBoot 加载配置文件的优先级
SpringBoot 加载配置文件的优先级
- classpath:/ -- 优先级4. The classpath root
- classpath:/config/ -- 优先级3. A classpath /config package
- file:./ -- 优先级2. The current directory
- file:./config/ -- 优先级1. A /config subdirectory of the current directory.
上面从4~1的顺序加载
1,properties的配置文件属性优先高于yml配置,yml配置文件优先于propertes配置文件加载
2,通过 --spring.config.location=“path” 参数 指定配置文件位置
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。