导读


打算在window环境下后台启动jar包,但是nohup是linux命令,这里使用一个脚本来启动并生成日志。

步骤


  1. @echo off
  2. %1 mshta vbscript:CreateObject("WScript.Shell").Run("%~s0 ::",0,FALSE)(window.close)&&exit
  3. java -jar 某某.jar >StartUpLog.log 2>&1 &
  4. exit

日出的日志文件为:StartUpLog.log

END


搞定~