场景
spingboot项目部署jar时,需要时常修改配置,为了方便,将配置文件放到jar包外
操作步骤
-
在jar包同级目录下创建config文件夹(位置没有强制要求,为了方便而已)
-
在jar包同级目录下创建start.bat文件,并编辑内容文章来源:https://www.toymoban.com/news/detail-623834.html
@echo off
:: 命令窗口标题
title yudibei_performance_test
chcp 65001
:: 用 -Dspring.config.location 指定配置文件路径, -Dfile.encoding=utf-8 要放在-jar前面,不会控制台中文乱码
java -Dfile.encoding=utf-8 -jar D:\jar_test\test.jar -Dspring.config.location=D:\jar_test\config
pause
- 直接双击start.bat进行启动
总结
启动jar之前设置参数 -Dspring.config.location 指向外部配置目录即可文章来源地址https://www.toymoban.com/news/detail-623834.html
到了这里,关于java -jar指定外部配置文件的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!