...
As soon as the JVM is started, it is possible to connect using the above ports. The simplest debugger is jdb
:
(jdb is not too convenient by default, so it is recommended to wrap jdb in the rlwrap command, e.g.: alias jdb='rlwrap jdb')
Code Block |
---|
jdb -attach localhost:30030 |
...