Debuggers -Java
Debugger
A program designed to help detect, locate, and correct errors in another program. It allows the developer to step through the execution of the process and its threads, monitoring memory, variables, and other elements of process and thread context.
From : msdn2.microsoft.com/en-us/library/ms679306.aspx
JPDA
The Java Platform Debugger Architecture (JPDA) provides the infrastructure you need to build end-user debugger applications for the Java Platform, Standard Edition (Java SE). It includes the following three-layered APIs:
- Java Debug Interface (JDI), a high-level Java programming language interface, including support for remote debugging;
- Java Debug Wire Protocol (JDWP), which defines the format of information and requests transferred between the process being debugged and the debugger front end;
- The JVM(TM) Tools Interface, JVM TI. This is a low-level native interface that defines the services a Java virtual machine provides for tools such as debuggers and profilers. JVM TI was introduced in J2SE 5.0 and replaced JVMDI and JVMPI. JVMDI was removed in Java SE 6 and JVMPI will be removed in Java SE 7.
visit
JPDA
JPDA was visited : 51 times
Loading .....