Section A.5. ClassLoader Options


A.5. ClassLoader Options

In the Java API, you can explicitly use either the System (or Application), Current, or the Thread Context ClassLoader.

You can access the System ClassLoader by calling ClassLoader.getSystemClassLoader( ). In most J2EE application servers, the System ClassLoader is too high in the hierarchy and will not find the resources packaged in your application's EJB JAR or WAR. In JBoss, using the System ClassLoader is still a problem because the ClassLoader Repository holds references to all deployed applications, so you could easily have a naming conflict if more than one application uses the same class.

The Current ClassLoader is the ClassLoader that loaded the class that contains the method that's currently executing. Class.getResource( ) and the one-parameter version of Class.forName( ) use the Current ClassLoader by default. The Current ClassLoader is a better choice than the System ClassLoader, but there are still problems with using the Current ClassLoader:

  • You may not know who calls your class, and the current ClassLoader could be up too high in the ClassLoader to find the resources that your class needs.

  • In JBoss, you could have the same naming conflict with Class Loader Repository that you had with the System ClassLoader.

You gain access to the current Thread Context ClassLoader by calling Thread.currentThread( ).getContextClassLoader( ). The Thread Context ClassLoader is the ClassLoader used by the creator of the Thread that runs your code. The Thread Context ClassLoader works in a way that's contrary to the Delegation Model by enabling a parent ClassLoader to access classes from any of its child ClassLoaders. Sometimes a parent ClassLoader needs to see classes that one of its child ClassLoaders instantiates at runtime. Use the Thread Context Class Loader for the following reasons:

  • In JBoss, you're guaranteed to load the class or property file from your application by using the Thread Context ClassLoader. Even though the JBoss ClassLoader Repository may have the same class or property from several applications, the Thread Context ClassLoader picks the class or property that belongs to your application.

  • The EJB specification forbids EJBs to use the Current Class Loader, and since the System Class Loader isn't a workable option, you're left with the Thread Context ClassLoader. See the Programming Restrictions section in the EJB specification for further details.

Here are a couple of practical uses of the Thread Context ClassLoader:

  • If you have a factory method that uses Class.forName( ) to instantiate classes dynamically, pass the Thread Context ClassLoader as a parameter to Class.forName( ).

  • To load a Properties file in your application's CLASSPATH, call Thread.currentThread( ).getContextClassLoader( ).getResourceAsStream( ) to find the Properties file, and use the resulting InputStream when calling Properties.load( ).



JBoss at Work. A Practical Guide
JBoss at Work: A Practical Guide
ISBN: 0596007345
EAN: 2147483647
Year: 2004
Pages: 197

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net