Tagged Questions
The jpda tag has no wiki summary.
5
votes
7answers
392 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
447 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
1answer
31 views
Cannot start tomcat as an external tool within eclipse
I have configured eclipse to be able to start(for debug: using jpda) and stop tomcat as a program. The first time when i start/shutdown tomcat from eclipse is successful.
But the second time when i ...
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
253 views
Why does Tomcat start with 0.0.0.0:8000 open?
I know the short answer is "You told it to." But of course, I'm not sure how I told Tomcat to start with the 8000 default debug port open, but on 0.0.0.0 instead of the expected 127.0.0.1. Here's a ...
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
1answer
3k views
Tomcat within Eclipse - starting with JPDA enabled
I'm trying to get a webapp up and running - for debugging - within a Tomcat instance configured in Eclipse (to keep my work flow as automatic as possible). I'm trying to get remote debugging enabled ...
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
326 views
How to remote debug Tomcat (JPDA) when server has multiple virtual hosts running
Im trying to remote debug Tomcat (JPDA) on a server that is running two virtual hosts using the same Tomcat container. How do I ensure the debugger connects to virtual host A and not B.
Thanks!
0
votes
1answer
157 views
How to connect Adobe Air client side with Java VM Debug Interface?
I'd like to know if/how would it be possible to connect Adobe Air application to Java VM Debug Interface? I have some objects residing on server side and don't want to change the code there and ...
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 ...