📄 classloaderutils.java
字号:
/*
* Copyright 2002-2004 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.util;
/**
* Utility class for diagnostic purposes, to analyze the
* ClassLoader hierarchy for any object.
* @author Rod Johnson
* @since 02 April 2001
* @see java.lang.ClassLoader
*/
public abstract class ClassLoaderUtils {
/**
* Show the class loader hierarchy for this class.
* @param obj object to analyze loader hierarchy for
* @param role a description of the role of this class in the application
* (e.g., "servlet" or "EJB reference")
* @param delim line break
* @param tabText text to use to set tabs
* @return a String showing the class loader hierarchy for this class
*/
public static String showClassLoaderHierarchy(Object obj, String role, String delim, String tabText) {
String s = "object of " + obj.getClass() + ": role is " + role + delim;
return s + showClassLoaderHierarchy(obj.getClass().getClassLoader(), delim, tabText, 0);
}
/**
* Show the class loader hierarchy for this class.
* @param cl class loader to analyze hierarchy for
* @param delim line break
* @param tabText text to use to set tabs
* @param indent nesting level (from 0) of this loader; used in pretty printing
* @return a String showing the class loader hierarchy for this class
*/
public static String showClassLoaderHierarchy(ClassLoader cl, String delim, String tabText, int indent) {
if (cl == null) {
String s = "null classloader " + delim;
ClassLoader ctxcl = Thread.currentThread().getContextClassLoader();
s += "Context class loader=" + ctxcl + " hc=" + ctxcl.hashCode();
return s;
}
String s = "";
for (int i = 0; i < indent; i++) {
s += tabText;
}
s += cl + " hc=" + cl.hashCode() + delim;
ClassLoader parent = cl.getParent();
return s + showClassLoaderHierarchy(parent, delim, tabText, indent + 1);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -