windows下tomcat在当前窗口运行,不在新弹出的窗口运行
时间:2016-06-02 11:20:30
收藏:0
阅读:1085
window下tomcat在当前窗口启动,不在一个新的窗口启动
startup.bat
中最下几行
goto setArgs
:doneSetArgs
call "%EXECUTABLE%" start %CMD_LINE_ARGS%
:end
----------
把start改为run
call "%EXECUTABLE%" run %CMD_LINE_ARGS%
评论(0)