Tagged Questions
4
votes
3answers
108 views
Isolating untrusted native code in Java
I have a piece of C library that I don't trust (in the sense that it might crash frequently). I am calling this from a Java process.
To prevent the crash in C library bringing the whole Java app. ...
3
votes
5answers
722 views
Fail fast finally clause in Java
Is there a way to detect, from within the finally clause, that an exception is in the process of being thrown?
ie:
try {
// code that may or may not throw an exception
} finally {
...
0
votes
2answers
28 views
Java web applications supervision and faulttolerance
Note: The author of this question has some Java background, but is a complete newbie in Java EE.
I would like to know if there exists a mature tool to supervise Java web applications.
For example, ...