SpringBoot的jar包引用外部properties文件
2021-02-09 16:15
标签:配置 文件路径 demo 必须 app 引用 查看 dem 比较 场景是这样的: 使用SpringBoot打包时,配置文件application.properties默认会打包在jar里面,这样如果需要修改的话必须修改了文件并重新压包,比较麻烦 在网上查看有几种引用外部配置文件的方法,有的放到class目录,有的说是在META里面配置文件路径,但相对来说都不如在启动jar包时将properties文件路径作为参数传入灵活,如下所示: java -jar bootdemo-0.0.1-SNAPSHOT.jar --spring.config.location=./test.properties //此时test.properties和jar是同级目录 java -jar bootdemo-0.0.1-SNAPSHOT.jar --spring.config.location= /opt/config/test.properties //此时test.properties在绝对目录/opt/config;这种路径可以统一管理配置文件 SpringBoot的jar包引用外部properties文件 标签:配置 文件路径 demo 必须 app 引用 查看 dem 比较 原文地址:https://www.cnblogs.com/ShouWangYiXin/p/12749487.html
文章标题:SpringBoot的jar包引用外部properties文件
文章链接:http://soscw.com/index.php/essay/53158.html