https://github.com/jetbrains/jdk-sa-jdwp
Java serviceability agent to jdwp adapter
https://github.com/jetbrains/jdk-sa-jdwp
Last synced: 3 months ago
JSON representation
Java serviceability agent to jdwp adapter
- Host: GitHub
- URL: https://github.com/jetbrains/jdk-sa-jdwp
- Owner: JetBrains
- License: gpl-2.0
- Created: 2018-09-11T20:58:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-01-09T16:48:22.000Z (4 months ago)
- Last Synced: 2025-01-30T02:03:04.311Z (4 months ago)
- Language: Java
- Homepage:
- Size: 492 KB
- Stars: 23
- Watchers: 253
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# sa-jdwp [](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub) [ ](https://bintray.com/jetbrains/intellij-third-party-dependencies/sa-jdwp/_latestVersion)
Java serviceability agent to jdwp adaptersa-jdi was removed from jdk 9, this library should replace it and allow to attach to a process from any java debugger
checked with jdk version 6 to 19
## Usage
* run `java -jar sa-jdwp.jar (port)`
* wait for `Waiting for debugger on..` message
* connect java debugger to the host/port provided## Development prerequisites
You'll need jdks version 6, 8, 10 and 13.
To be able to do local build, create `gradle.properties` file in the project root folder with paths to jdks installations like this:
```
JDK_1_6=c:\\Program Files\\Java\\jdk1.6.0_38
JDK_1_8=c:\\Program Files\\Java\\jdk1.8.0_181
JDK_10=c:\\Program Files\\Java\\jdk-10.0.1
JDK_13=c:\\Program Files\\Java\\jdk-13
```