Package org.apache.ibatis.migration.io
Class ClassLoaderWrapper
java.lang.Object
org.apache.ibatis.migration.io.ClassLoaderWrapper
A class to wrap access to multiple class loaders making them work as one
- Author:
- Clinton Begin
-
Method Summary
Modifier and TypeMethodDescriptionClass<?> classForName(String name) Find a class on the classpath (or die trying)Class<?> classForName(String name, ClassLoader classLoader) Find a class on the classpath, starting with a specific classloader (or die trying)getResourceAsStream(String resource) Get a resource from the classpathgetResourceAsStream(String resource, ClassLoader classLoader) Get a resource from the classpath, starting with a specific class loadergetResourceAsURL(String resource) Get a resource as a URL using the current class pathgetResourceAsURL(String resource, ClassLoader classLoader) Get a resource from the classpath, starting with a specific class loader
-
Method Details
-
getResourceAsURL
-
getResourceAsURL
Get a resource from the classpath, starting with a specific class loader- Parameters:
resource- - the resource to findclassLoader- - the first classloader to try- Returns:
- the stream or null
-
getResourceAsStream
Get a resource from the classpath- Parameters:
resource- - the resource to find- Returns:
- the stream or null
-
getResourceAsStream
Get a resource from the classpath, starting with a specific class loader- Parameters:
resource- - the resource to findclassLoader- - the first class loader to try- Returns:
- the stream or null
-
classForName
Find a class on the classpath (or die trying)- Parameters:
name- - the class to look for- Returns:
- - the class
- Throws:
ClassNotFoundException- Duh.
-
classForName
Find a class on the classpath, starting with a specific classloader (or die trying)- Parameters:
name- - the class to look forclassLoader- - the first classloader to try- Returns:
- - the class
- Throws:
ClassNotFoundException- Duh.
-