Tomcat远程调试

在tomcat\bin目录下新建一个RemoteDebug.bat

 

 

cd D:/WebServer/apache-tomcat-6.0.28/bin
set JPDA_ADDRESS=8000 
set JPDA_TRANSPORT=dt_socket 
set CATALINA_OPTS=-server -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000 
startup 

 

红色的部分你懂的。

 

然后在eclipse中新建一个Remote Java Application,选择对应的项目,填写刚才对应的端口,同时勾选Allow termination of remote VM就可以了。

 

先运行刚才新建的RemotDebug.bat,然后启动eclipse中新建的Remote Java Application。只要没提示错误,就说明成功了。

在需要的地方下端口,浏览tomcat中的网站~嘿嘿,断点停住了吧。

你可能感兴趣的:(eclipse,tomcat,调试,远程调试,远程)