Tagged Questions

5
votes
7answers
410 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 ...
3
votes
2answers
70 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
315 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 ...
0
votes
1answer
49 views

Debug Apache Tomcat. Oops! Google Chrome could not connect. Why?

I have next task: Debug Apache Tomcat in Eclipse. My steps: Run Tomcat: ./startup.sh Check - open in browser localhost:8080/MyProject - SUCCESS. in file catalina.sh I added next lines: export ...
0
votes
2answers
75 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
304 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 ...