Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/d0k1/jdwphttptunnel
- Owner: d0k1
- License: apache-2.0
- Created: 2017-08-16T19:43:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-16T19:52:14.000Z (over 7 years ago)
- Last Synced: 2024-11-14T18:31:03.373Z (3 months ago)
- Topics: debug, eclipse, intellij-idea, jdwp
- Language: Java
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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