eclipse远程调试tomcat程序

1,下载tomcat软件包

下载,提取码:1ffc

2,解压缩,然后把E:\software\tomcat-7.0.62\bin添加到环境变量;

3,编辑器打开bin\catalina.bat,找到

:noJpda

然后紧随其后添加:

set CATALINA_OPTS=-server -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8899
 

并保存;

4,然后就可以双击start.bat,启动tomcat了。

你可能感兴趣的:(eclipse)