JavaCore.

Advanced Exception handling for the Java Virtual Machine.

News:

Overview:

JavaCore is an enhanced debug facility for the Java platform. It enables "core" dumping when an un-handled Exception is thrown. This has been a facility UNIX developers have enjoyed for years and (to some extent) it is now available to Java developers. There is a difference in use which may be confusing to some people. JavaCore does not terminate the JVM. It writes system information (stack trace, class loader information, CLASSPATH, system properties, memory info, etc) to an XML file which can then be loaded into other applications for further analysis.

JavaCore provides an implementation of java.lang.Exception and an additional library package (net.sourceforge.javacore) which modify your JVM so that you can control when core files are written.

Everything here has the engineering principle of stablity first. JavaCore installs at such a low level that it is important to use redundancy and defensive programming. A goot example is that Exceptions thrown/caught from within JavaCore are kept to a minimum and where Exceptions could be thrown (Integer parsing, null strings, etc) checks are done. Also, JavaCore won't process Exceptions which originate from within itself (even if you tell it to).

Features:

Install:

Please note that before you install JavaCore you should backup your Java Virtual Machine so that you can reverse the changes it makes if you have a problem. JavaCore will also slow down your JVM in high use environments. For development purposes this performance hit is irrelevant.

There are two ways to install JavaCore:

After installing the classes you need to provide a javacore.properties file which can be used. This file should be located in either HOME/javacore.properties, JAVA_HOME/javacore.properties, or /etc/javacore.properties. You could use the default version which ships with JavaCore as a template. This is located in JAVA_CORE/src/properties/javacore.properties. You should read through this file as additional instructions for configuration are provided.


$Id: index.html,v 1.7 2001/01/15 17:18:00 burtonator Exp $