aspose file tools
The moose likes IDEs, Version Control and other tools and the fly likes Debugging in Eclipse Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » IDEs, Version Control and other tools
Reply Bookmark "Debugging in Eclipse" Watch "Debugging in Eclipse" New topic
Author

Debugging in Eclipse

Omkar Shetkar
Ranch Hand

Joined: Jun 22, 2006
Posts: 30

Hi All,

I wanted to know is there any specialized way to debug multithreaded applications where I want to debug for exceptions like NullPointerException which is occurring randomly for randomly chosen thread. How to deal with this kind of situations? I will be waiting for your valuable replies...

Regards
Omkar V S


http://www.omkarvs.blogspot.com
Tim Holloway
Saloon Keeper

Joined: Jun 25, 2001
Posts: 14572
    
    7

If a thread throws a fatal exception while debugging in eclipse, the offending thread should halt but the rest of the app would keep running. In the debug window, you can select the dead thread and see its stack context. I think the other threads keep running, anyway. I forget.

It's also possible to set breakpoints on NullPointerExceptions using the Eclipse breakpoint editor. The main problem here is that certain libraries are quite sloppy about using Null Pointer and Array Out Of Bounds exceptions for application purposes, which they intercept internally and keep running. So if you set a general breakpoint, you may be flooded with noise exceptions.


Customer surveys are for companies who didn't pay proper attention to begin with.
Jay Damon
Ranch Hand

Joined: Jul 31, 2001
Posts: 279
To eliminate the "noise" exceptions, specify "uncaught" when creating a Java Exception Breakpoint.
Omkar Shetkar
Ranch Hand

Joined: Jun 22, 2006
Posts: 30

Thanks
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Debugging in Eclipse
 
Similar Threads
Struts 2 problem -- There is no Action mapped for namespace / and action name
request.getParameter() LImitation
sendError() and setStatus()
Session Advice
Random Colors