| java.lang.Object org.springframework.util.ClassLoaderUtils
ClassLoaderUtils | abstract public class ClassLoaderUtils (Code) | | Utility class for diagnostic purposes, to analyze the
ClassLoader hierarchy for any given object or class loader.
author: Rod Johnson author: Juergen Hoeller since: 02 April 2001 See Also: java.lang.ClassLoader |
showClassLoaderHierarchy | public static String showClassLoaderHierarchy(Object obj, String role)(Code) | | Show the class loader hierarchy for this class.
Uses default line break and tab text characters.
Parameters: obj - object to analyze loader hierarchy for Parameters: role - a description of the role of this class in the application(e.g., "servlet" or "EJB reference") a String showing the class loader hierarchy for this class |
showClassLoaderHierarchy | public static String showClassLoaderHierarchy(Object obj, String role, String lineBreak, String tabText)(Code) | | Show the class loader hierarchy for this class.
Parameters: obj - object to analyze loader hierarchy for Parameters: role - a description of the role of this class in the application(e.g., "servlet" or "EJB reference") Parameters: lineBreak - line break Parameters: tabText - text to use to set tabs a String showing the class loader hierarchy for this class |
showClassLoaderHierarchy | public static String showClassLoaderHierarchy(ClassLoader cl)(Code) | | Show the class loader hierarchy for the given class loader.
Uses default line break and tab text characters.
Parameters: cl - class loader to analyze hierarchy for a String showing the class loader hierarchy for this class |
showClassLoaderHierarchy | public static String showClassLoaderHierarchy(ClassLoader cl, String lineBreak, String tabText)(Code) | | Show the class loader hierarchy for the given class loader.
Parameters: cl - class loader to analyze hierarchy for Parameters: lineBreak - line break Parameters: tabText - text to use to set tabs a String showing the class loader hierarchy for this class |
|
|