vote up 0 vote down star
1

Hello,

Is there a way to make a global exception-handler in Java. I want to use like this:

"When an exception is thrown somewhere in the WHOLE program, exit."

The handler may not catch exceptions thrown in a try-catch body.

Martijn

flag

3 Answers

vote up 5 vote down check

Use Thread.setDefaultUncaughtExceptionHandler. See Rod Hilton's "Global Exception Handling" blog post for an example.

link|flag
vote up 2 vote down

You can set the default UncaughtExceptionHandler , which will be used whenever a exception propegates uncaught throughout the system.

link|flag
vote up 0 vote down

DefaultUncaughtExceptionHandler is the correct answer. It was revealed to me by Jeff Storey at this location, a few days ago. As u suspected, the "manually" caught exceptions will never be caught by this handler. However i got the following warning :

**- To be compliant to J2EE, a webapp should not use any thread.**

when i have checked my project against good-practice and recommended java coding style with PMD plug-in for Eclipse IDE.

link|flag
"**- To be compliant to J2EE, a webapp should not use any thread.**" - I'm not aware of this. Do you mean that the service() (and doGet(), doPost(), etc.) method in a servlet should not spawn new threads? – Kolibri Oct 10 at 18:06
I have no idea what that means, as my app is not web based. I've google it for a while, and i haven't found any answers, i'm affraid. Besides warnings like this or "variable name is too short" or "variable name is too long", i have founded PMD to be a great source of inspiration. I strongly recommend it. – Hypercube Oct 10 at 18:14
I did a bit of digging around, and apparently you cannot directly create threads in J2EE. I've found a couple of links: theserverside.com/discussions/… and stackoverflow.com/questions/533783/… – Kolibri Oct 10 at 20:05
Roger that, interesting.. – Hypercube Oct 10 at 21:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.