JDI and XDebugger Interface

Is there a simple way integrate JDI with the XDebugger interface? i.e. implement a debug process (configuration, starter and all...) that accepts and performs on a jdi VirtualMachine that I initialize myself?
I see there are some JDI adapters in the com.intellij.debugger.jdi package, but they seem to be from the old debugger interface.

(i am looking for a way to implement Oracle DBMS_DEBUG_JDWP debugging)

0
2 comments

Hi, have a look at debugger-openapi, groovy, scala and other debuggers works on top of java debugger using that way.

0

Thanks Egor! Just found that i can extend the Remote-App run configuration to initialize my virtual machine (i.e. listen to a jdi socket). Don't need to initialize the jdi-vm myself.

0

Please sign in to leave a comment.