Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/d0k1/jdwphttptunnel

Debug almost any Java webapp via HTTP protocol from IDE you like
https://github.com/d0k1/jdwphttptunnel

debug eclipse intellij-idea jdwp

Last synced: 22 days ago
JSON representation

Debug almost any Java webapp via HTTP protocol from IDE you like

Awesome Lists containing this project

README

        

# Java(tm) Debug Wire Protocol HTTP Tunnel

This project makes possible to debug java web applications via http protocol.
Spring-boot devtools has the same functionality, but sometimes it's not an option to make legacy app spring-boot based.

Concepts of remote debugging by http protocol is the same as defined in spring-boot manual:
* you start a debugee application with additional command line args like ``-Xdebug -Xrunjdwp:server=y,transport=dt_socket,suspend=n``
* you start a debugee client side application
* you start a debuger from IDE you like, using jdwp port 8000 and host localhost
* debugee client reads traffic from port 8000 and passes it to a remote debugee