美文网首页SAP
如何进行Java的Remote调试

如何进行Java的Remote调试

作者: 华山令狐冲 | 来源:发表于2020-11-20 10:22 被阅读0次

(1) start Jetty server under debug mode via mvn jetty:run

(2) In Eclipse, create a new Debug configuration->Remote Java Application

Specify Host as localhost and port 8000:

Click debug button:

You should observe that the Jetty server listening to port 8000 has accepted this debug request and start application via localhost:8080 now:

(3) go to localhost:8080, perform action to trigger the breakpoint:

And now in Eclipse, breakpoint is triggered!

Note: if you meet with error message “bind error, address already in use”, please first use “netstat -lp” to find the process id which occupies the address and kill that process by kill -9 <pid>.


If still does not work, restart the virtual machine instance.

相关文章

网友评论

    本文标题:如何进行Java的Remote调试

    本文链接:https://www.haomeiwen.com/subject/gqqvsktx.html