标签:addition rop 配置文件 boot 通过 链接 file csdn http
Spring boot 的Application.properties 配置文件可以是以下几个地方:
classpath:/,classpath:/config/,file:./,file:./config/.
但要注意的是加载的顺序是倒过来的:
file:./config/
file:./
classpath:/config/
classpath:/
可以通过spring.config.location增加自定义的配置文件存放目录,比如:
classpath:/custom-config/,file:./custom-config/
那么最终的寻找路径是:
file:./custom-config/
classpath:custom-config/
file:./config/
file:./
classpath:/config/
classpath:/
可以通过spring.config.name 修改默认的配置文件名称,比如:
$ java -jar myproject.jar --spring.config.name=myproject
可以通过spring.config.location指定配置文件,比如:
$ java -jar myproject.jar --spring.config.location=classpath:/default.properties,classpath:/override.properties
可以通过spring.config.location指定配置文件的位置,比如:
$ java -jar myproject.jar --
spring.config.additional-location=classpath:/custom-config/,file:./custom-config/
————————————————
版权声明:本文为CSDN博主「老骆的那点事」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/lonffyluo/java/article/details/80877923
标签:addition rop 配置文件 boot 通过 链接 file csdn http
原文地址:https://www.cnblogs.com/jmbkeyes/p/12925214.html