Tagged Questions
5
votes
7answers
391 views
Which Java debugger do *you* use
I spend a lot of time debugging applications in Eclipse using JPDA. There are a few issues with the Eclipse debugger which really annoy me. Can anybody recommend plug-ins, better debuggers or perhaps ...
4
votes
1answer
446 views
Using JDWP and JVMTI to obtain information of the running Java application
We are developing an application for obtaining the information of a running java application using JDWP and JVMTI. Sun Java comes with a reference implementation of JDWP so using agentlib -jdwp: will ...
3
votes
2answers
66 views
java debugging - watch an out of scope variable
When debugging a C/C++ application I can create a watch of an address cast to a pointer type and then view that contents of a structure even when it goes out of scope. Is it possible to achieve ...
3
votes
1answer
300 views
Java Access to Local Variable Names
I'm currently writing a program in which I would like to access the variable names of local variables during execution of a program and pass them off externally. I'm aware that Java will dump local ...
1
vote
1answer
144 views
ObjectReference underlying object in JDI and JPDA
Very specifically, in JDI and JPDA context, I have the following questions:
Why ObjectReference does not expose its underlying object? Is it based on some specification? Are all implementations ...
0
votes
0answers
34 views
JDI/JPDA Event Filtering
In JDI, there is the API to exclude events from processed events in JVM used by JPDA. This is done using:
addExclusionFilter(String) to exclude some pattern; e.g. addExclusionFilter("java.*")
...
0
votes
2answers
68 views
Java API to turn on debugging in a running JVM
Is there a programmatic way to turn on debugging in a running JVM instance? I am looking for an API that would make a running JVM, a debug server. The API would do the equivalent of
-Xdebug ...
0
votes
1answer
266 views
JVM's Hot Swap of classes loaded by Spring, using JPDA
could please anybody share his experience about this topic ?
When using jpda on tomcat, does class reloading work even for classes loaded via spring ? Let say that I have spring context with couple ...
0
votes
2answers
208 views
Location of Java examples on Mac OSX
I'm looking for the example source code that is supposed to come with the JVM, specifically the file demo/jpda/examples.jar. Where is this located on OSX? (is it even on Mac OSX?)
Thanks.
0
votes
1answer
295 views
Learning to debug in Java
I'm both learning to use the JPDA on Netbeans and solving the Prime Generator problem of Sphere's Online Judge.
I've been reading this tutorial on netbeans.org about he JPDA, but haven't found it ...