在启动后台 jar包时,使用指定的 application.yml操作
倪默遥 人气:0jar 包启动时指定配置文件 application.yml
nohup java -jar vPaas.jar --spring.config.location=/opt/vpaas-conf/application.yml > /opt/vpaas-conf/nohup.out 2>&1 &
如果不喜欢将 application.properties 作为配置文件名,你可以通过指
定 spring.config.name 环境属性来切换其他的名称,也可以使
用 spring.config.location 环境属性引用一个明确的路径(目录位置或文件路
指定配置文件:
--spring.config.location=/opt/vpaas-conf/application.yml
将所有的调试信息输入到:
/opt/vpaas-conf/nohup.out
补充知识:启动jar包并放入后台运行脚本
我就废话不多说了,大家还是直接看代码吧~
nohup java -jar smart_city_manager_banner.jar > smart_city_manager_banner.out 2>&1 &
nohup java -jar smart_city_manager_banner.jar > smart_city_manager_banner.out 2>&1 &
tail -f smart_city_manager_banner.out
ps aux |grep java
以上这篇在启动后台 jar包时,使用指定的 application.yml操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
加载全部内容