Package org.apache.logging.log4j.util
Class LoaderUtil
java.lang.Object
org.apache.logging.log4j.util.LoaderUtil
Consider this class private. Utility class for ClassLoaders.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static class
(package private) static class
URL
andClassLoader
pair. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final ClassLoader[]
private static final boolean
static final String
System property to set to ignore the thread context ClassLoader.private static Boolean
private static final SecurityManager
private static final PrivilegedAction<ClassLoader>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate static void
accumulateClassLoaders
(ClassLoader loader, Collection<ClassLoader> loaders) Adds the provided loader to the loaders collection, and traverses up the tree until either a null value or a classloader which has already been added is encountered.static Collection<URL>
findResources
(String resource) Finds classpath resources.(package private) static Collection<LoaderUtil.UrlResource>
findUrlResources
(String resource) static ClassLoader[]
static ClassLoader
Gets the current Thread ClassLoader.static boolean
isClassAvailable
(String className) Determines if a named Class can be loaded or not.private static boolean
static Class<?>
Loads a class by name.static <T> T
newCheckedInstanceOf
(String className, Class<T> clazz) Loads and instantiates a derived class using its default constructor.static <T> T
newCheckedInstanceOfProperty
(String propertyName, Class<T> clazz) Loads and instantiates a class given by a property name.static <T> T
newInstanceOf
(Class<T> clazz) Loads and instantiates a Class using the default constructor.static <T> T
newInstanceOf
(String className) Loads and instantiates a Class using the default constructor.
-
Field Details
-
EMPTY_CLASS_LOADER_ARRAY
-
IGNORE_TCCL_PROPERTY
System property to set to ignore the thread context ClassLoader.- Since:
- 2.1
- See Also:
-
SECURITY_MANAGER
-
ignoreTCCL
-
GET_CLASS_LOADER_DISABLED
private static final boolean GET_CLASS_LOADER_DISABLED -
TCCL_GETTER
-
-
Constructor Details
-
LoaderUtil
private LoaderUtil()
-
-
Method Details
-
getThreadContextClassLoader
Gets the current Thread ClassLoader. Returns the system ClassLoader if the TCCL isnull
. If the system ClassLoader isnull
as well, then the ClassLoader for this class is returned. If running with aSecurityManager
that does not allow access to the Thread ClassLoader or system ClassLoader, then the ClassLoader for this class is returned.- Returns:
- the current ThreadContextClassLoader.
-
getClassLoaders
-
accumulateClassLoaders
Adds the provided loader to the loaders collection, and traverses up the tree until either a null value or a classloader which has already been added is encountered. -
isClassAvailable
Determines if a named Class can be loaded or not.- Parameters:
className
- The class name.- Returns:
true
if the class could be found orfalse
otherwise.- Since:
- 2.7
-
loadClass
Loads a class by name. This method respects theIGNORE_TCCL_PROPERTY
Log4j property. If this property is specified and set to anything besidesfalse
, then the default ClassLoader will be used.- Parameters:
className
- The class name.- Returns:
- the Class for the given name.
- Throws:
ClassNotFoundException
- if the specified class name could not be found- Since:
- 2.1
-
newInstanceOf
public static <T> T newInstanceOf(Class<T> clazz) throws InstantiationException, IllegalAccessException, InvocationTargetException Loads and instantiates a Class using the default constructor.- Type Parameters:
T
- the type of the class modeled by theClass
object.- Parameters:
clazz
- The class.- Returns:
- new instance of the class.
- Throws:
IllegalAccessException
- if the class can't be instantiated through a public constructorInstantiationException
- if there was an exception whilst instantiating the classInvocationTargetException
- if there was an exception whilst constructing the class- Since:
- 2.7
-
newInstanceOf
public static <T> T newInstanceOf(String className) throws ClassNotFoundException, IllegalAccessException, InstantiationException, InvocationTargetException Loads and instantiates a Class using the default constructor.- Parameters:
className
- The class name.- Returns:
- new instance of the class.
- Throws:
ClassNotFoundException
- if the class isn't available to the usual ClassLoadersIllegalAccessException
- if the class can't be instantiated through a public constructorInstantiationException
- if there was an exception whilst instantiating the classInvocationTargetException
- if there was an exception whilst constructing the class- Since:
- 2.1
-
newCheckedInstanceOf
public static <T> T newCheckedInstanceOf(String className, Class<T> clazz) throws ClassNotFoundException, InvocationTargetException, InstantiationException, IllegalAccessException Loads and instantiates a derived class using its default constructor.- Type Parameters:
T
- The type of the class to check.- Parameters:
className
- The class name.clazz
- The class to cast it to.- Returns:
- new instance of the class cast to
T
- Throws:
ClassNotFoundException
- if the class isn't available to the usual ClassLoadersIllegalAccessException
- if the class can't be instantiated through a public constructorInstantiationException
- if there was an exception whilst instantiating the classInvocationTargetException
- if there was an exception whilst constructing the classClassCastException
- if the constructed object isn't type compatible withT
- Since:
- 2.1
-
newCheckedInstanceOfProperty
public static <T> T newCheckedInstanceOfProperty(String propertyName, Class<T> clazz) throws ClassNotFoundException, InvocationTargetException, InstantiationException, IllegalAccessException Loads and instantiates a class given by a property name.- Type Parameters:
T
- The type to cast it to.- Parameters:
propertyName
- The property name to look up a class name for.clazz
- The class to cast it to.- Returns:
- new instance of the class given in the property or
null
if the property was unset. - Throws:
ClassNotFoundException
- if the class isn't available to the usual ClassLoadersIllegalAccessException
- if the class can't be instantiated through a public constructorInstantiationException
- if there was an exception whilst instantiating the classInvocationTargetException
- if there was an exception whilst constructing the classClassCastException
- if the constructed object isn't type compatible withT
- Since:
- 2.5
-
isIgnoreTccl
private static boolean isIgnoreTccl() -
findResources
Finds classpath resources.- Parameters:
resource
- the name of the resource to find.- Returns:
- a Collection of URLs matching the resource name. If no resources could be found, then this will be empty.
- Since:
- 2.1
-
findUrlResources
-