IDE开发工具启动
在JetBrains IDEA开发工具的配置
1.启动类启动方式
2.main方法启动方式
在IDEA中的program arguments配置此项--spring.profiles.active=dev
命令
3.JVM启动方式
在IDEA中的VM options配置此项-Dspring.profiles.active=dev
命令
jar包启动
1.指定配置环境
nohup java -jar -Dfile.encoding=utf-8 -Dspring.profiles.active=dev example.jar >/dev/null 2>&1 &
该启动时方式会去加载Jar包中resource目录下application-dev.yml或application-dev.properties文件。同时需要注意的是通IDEA的启动方式一样。
2.指定配置文件
yml文件
nohup java -jar -Dfile.encoding=utf-8 -Dspring.config.location=classpath:/application-dev.yml example.jar >/dev/null 2>&1 &
properties文件文章来源:https://www.toymoban.com/news/detail-531482.html
nohup java -jar -Dfile.encoding=utf-8 -Dspring.config.location=classpath:/application-dev.properties example.jar >/dev/null 2>&1 &
若配置文件在Jar包外面,-Dspring.config.location=后面不用classpath,直接使用配置文件的相对或绝对路径即可:
例如 -Dspring.config.location=app-dev.yml
-Dspring.config.location=/usr/local/soft/config/app-dev.yml文章来源地址https://www.toymoban.com/news/detail-531482.html
到了这里,关于springboot项目(jar包)指定配置文件启动的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!