ClassLoader
From Resin 3.0
This article requires cleanup and may refer to a legacy version of Resin.
Please visit http://www.caucho.com/documentation/ for the most up-to-date documentation. |
See Also
class-loader describes ClassLoader configuration
Show the classpath/classloaders for the web-app
The following jsp will reveal the classpath that is in effect for your web-app (but not if you are using the servlet-hack):
<%@ page import="com.caucho.loader.*, java.util.*" %> <ol> <% LinkedList loaders = new LinkedList(); ClassLoader loader = Thread.currentThread().getContextClassLoader(); while (loader != null) { loaders.addFirst(loader); loader = loader.getParent(); } Iterator iter = loaders.iterator(); while (iter.hasNext()) { loader = (ClassLoader) iter.next(); out.print("<li>"); out.print(loader.toString()); out.print(" System.identityHashCode()="); out.println(System.identityHashCode(loader)); if (loader instanceof DynamicClassLoader) { out.print("<ul>"); DynamicClassLoader dynamicClassLoader = (DynamicClassLoader) loader; String classPath = dynamicClassLoader.getLocalClassPath(); String pathSeparator = "" + java.io.File.pathSeparatorChar; classPath = "<li>" + classPath.replace(pathSeparator, "\n</li><li>") + "</li>"; out.println(classPath); out.print("</ul>"); } } %> </ol>