Spring boot 配置文件位置
2021-01-16 16:14
标签:addition rop 配置文件 boot 通过 链接 file csdn http Spring boot 的Application.properties 配置文件可以是以下几个地方: 但要注意的是加载的顺序是倒过来的: 可以通过spring.config.location增加自定义的配置文件存放目录,比如: 那么最终的寻找路径是: 可以通过spring.config.name 修改默认的配置文件名称,比如: 可以通过spring.config.location指定配置文件,比如: 可以通过spring.config.location指定配置文件的位置,比如: Spring boot 配置文件位置 标签:addition rop 配置文件 boot 通过 链接 file csdn http 原文地址:https://www.cnblogs.com/jmbkeyes/p/12925214.html
classpath:/,classpath:/config/,file:./,file:./config/.
file:./config/
file:./
classpath:/config/
classpath:/
classpath:/custom-config/,file:./custom-config/
file:./custom-config/
classpath:custom-config/
file:./config/
file:./
classpath:/config/
classpath:/
$ java -jar myproject.jar --spring.config.name=myproject
$ java -jar myproject.jar --spring.config.location=classpath:/default.properties,classpath:/override.properties
$ 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
上一篇:Python 练习实例77
文章标题:Spring boot 配置文件位置
文章链接:http://soscw.com/index.php/essay/42790.html