Java Platform Debugger Architecture: Difference between revisions
Jump to navigation
Jump to search
imported>Liz Removing link(s) to "JSwat": Removing links to deleted page JSwat. |
imported>Dotyoyo m debuggee→debugged - toolforge:typos |
||
| Line 5: | Line 5: | ||
* [[Java Virtual Machine Tools Interface]] (JVMTI) – a native interface that helps to inspect the state and to control the execution of applications running in the [[Java virtual machine|Java Virtual Machine]] ([[JVM]]). | * [[Java Virtual Machine Tools Interface]] (JVMTI) – a native interface that helps to inspect the state and to control the execution of applications running in the [[Java virtual machine|Java Virtual Machine]] ([[JVM]]). | ||
* Java Virtual Machine Debug Interface (JVMDI) – ''JVMDI was deprecated in J2SE 5.0 in favor of JVM TI, and was removed in Java SE 6.'' | * Java Virtual Machine Debug Interface (JVMDI) – ''JVMDI was deprecated in J2SE 5.0 in favor of JVM TI, and was removed in Java SE 6.'' | ||
* [[Java Debug Wire Protocol]] (JDWP) – defines communication between debuggee (a Java application) | * [[Java Debug Wire Protocol]] (JDWP) – defines communication between [[debugger]] and debuggee (a Java application) processes. | ||
[[File:JPDA architecture.png|thumb|JPDA architecture]] | [[File:JPDA architecture.png|thumb|JPDA architecture]] | ||
Latest revision as of 17:36, 8 September 2025
Template:Short description The Java Platform Debugger Architecture (JPDA) is a collection of APIs to debug Java code.
- Java Debugger Interface (JDI) – defines a high-level Java language interface that developers can easily use to write remote debugger application tools.
- Java Virtual Machine Tools Interface (JVMTI) – a native interface that helps to inspect the state and to control the execution of applications running in the Java Virtual Machine (JVM).
- Java Virtual Machine Debug Interface (JVMDI) – JVMDI was deprecated in J2SE 5.0 in favor of JVM TI, and was removed in Java SE 6.
- Java Debug Wire Protocol (JDWP) – defines communication between debugger and debuggee (a Java application) processes.
Java Debugger Interface (JDI)
JDI is the highest-layer of the Java Platform Debugger Architecture. It allows to access the JVM and the internal variables of the debugged program. It also allows to set breakpoints, stepping, and handle threads.[1]
See also
- Eclipse, an open-source IDE integrated with JPDA support
- IntelliJ IDEA, a commercial open-source Java IDE with integrated JPDA support
- JSwat, an open-source Java debugger using the JPDA
- NetBeans, an open-source IDE using the JPDA
References
<templatestyles src="Reflist/styles.css" />
- ↑ Script error: No such module "citation/CS1".
Script error: No such module "Check for unknown parameters".