英文:
Running java from its built Jar file (the alternative way)
问题
这个命令是否有非阻塞的等效方式:
Java -jar target/filename.war
谢谢
英文:
IS there a non process blocking equivalent for the command :
Java -jar target/filename.war
Thanks
答案1
得分: 0
以下命令将有所帮助
nohup java -jar target/filename.war &
输出(控制台)将可在nohup.out中查看。
英文:
The below command would help
nohup java -jar target/filename.war &
output (console) will be available at nohup.out.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论