Size: 171
Comment:
|
← Revision 11 as of 2024-03-07 13:40:50 ⇥
Size: 500
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
## page was renamed from JPDA | |
Line 2: | Line 3: |
Attach debugger to Java process * http://www.ibm.com/developerworks/library/os-eclipse-javadebug/index.html * http://docs.oracle.com/cd/E19146-01/821-0790/abxio/index.html * http://docs.oracle.com/javase/7/docs/technotes/guides/jpda/conninv.html * http://www.fizyka.umk.pl/~jacek/docs/jdk122doc/soljdb.html |
|
Line 3: | Line 9: |
http://www.ibm.com/developerworks/library/os-eclipse-javadebug/index.html java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address="8000" -jar test.jar |
{{{#!highlight sh java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address="8000" -jar test.jar jdb -attach myhost:8000 }}} |