eclipse 远程调试

 

 

1.修改tomcat的启动脚本startup.bat

 

cp start.sh start-debug.sh
vi start-debug.sh 
找到
 call "%EXECUTABLE%" start  这一行,修改为
      call "%EXECUTABLE%" jpda start 
上面添加这些
 set JPDA_TRANSPORT=dt_socket
 set JPDA_ADDRESS=9000
 set JPDA_SUSPEND=n

 

 
eclipse 远程调试_第1张图片
 

 

 

 然后再 eclipse中 使用 debug remote 调试

 
eclipse 远程调试_第2张图片
 

 

 ok

可以像 本地调试 ,调试 线上了 。。。

 

 

 

 

 

 

 

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