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

如何进行Java的Remote调试

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

如何进行Java的Remote调试

Specify Host as localhost and port 8000:

如何进行Java的Remote调试

Click debug button:

如何进行Java的Remote调试

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

如何进行Java的Remote调试

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

如何进行Java的Remote调试

And now in Eclipse, breakpoint is triggered!

如何进行Java的Remote调试

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 .

如何进行Java的Remote调试
如何进行Java的Remote调试

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

要获取更多Jerry的原创文章,请关注公众号"汪子熙":
如何进行Java的Remote调试

相关文章:

  • 2021-07-26
  • 2021-06-24
  • 2021-10-29
  • 2021-11-12
  • 2021-05-13
  • 2022-01-03
  • 2022-01-16
  • 2022-12-23
猜你喜欢
  • 2021-07-25
  • 2021-10-29
  • 2021-08-11
  • 2022-12-23
  • 2021-12-23
  • 2021-06-19
相关资源
相似解决方案