在linux服务器上运行Jar文件时通常的方法是:
$ java -jar test.jar
这种方式特点是ssh窗口关闭时,程序中止运行,或者是运行时没法切出去执行其他任务
$ nohup java -jar test.jar >temp.txt &
$ java -jar test.jar
$ nohup java -jar test.jar >temp.txt &
本文标题:linux java后台运行jar
本文链接:https://www.haomeiwen.com/subject/sinvuftx.html
网友评论