标签: web gradle
我运行“gradle tomcatRunWar”来启动运行的Web应用程序。控制台关闭后,它将停止。即使控制台关闭,如何保持Web应用程序运行?我不想使用屏幕等等......
答案 0 :(得分:1)
如果您不想使用screen或tmux等多路复用器,则可以使用nohup作为简单的单行。
screen
tmux
nohup
以下命令将在后台运行gradle:
nohup gradle tomcatRunWar &
Here is some more info on the nohup command.