Spring Boot配置文件放在jar外部的问题

1. 如果配置了 --spring.config.location , 则启动会覆盖classpath:/,classpath:/config/,file:./,file:./config

2. --spring.config.location=file:./   =》属性文件只会从当前目录查找,

如果--spring.profiles.active=prod
查找file:./application-prod.properties 和 file:./application.properties ,不会再去classpath加载(jar包里的)

3. spring boot jar启动会自动扫描jar所在目录下的配置和classpath下的配置。

 

官方说明:https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html

你可能感兴趣的:(Spring,Spring,boot)