List of usage examples for java.net URLClassLoader subclass-usage
From source file org.rhq.core.pc.plugin.RootPluginClassLoader.java
/**
* This is the classloader that will be the parent to all plugin classloaders. It will be created such that
* it essentially hides a set of excluded classes which typically means this this root classloader (and its
* children plugin classloaders) will allow the following to be loaded:
* <ul>
* <li>the plugin itself (including its third-party libraries)</li>
From source file com.google.gdt.eclipse.designer.hosted.classloader.GWTSharedClassLoader.java
/**
* The {@link ClassLoader} for gwt-user classes and project classes.
*
* @author mitin_aa
* @author scheglov_ke
* @coverage gwtHosted
From source file org.rhq.enterprise.server.plugin.pc.RootServerPluginClassLoader.java
/**
* This is the classloader that will be the parent to all plugin classloaders. It will be created such that
* it essentially hides a set of excluded classes which typically means this this root classloader (and its
* children plugin classloaders) will allow the following to be loaded:
* <ul>
* <li>the plugin itself (including its third-party libraries)</li>
From source file hotbeans.support.JarFileHotBeanModuleLoader.java
/** * HotBeanModuleLoader implementation, providing loading of classes and resources from a jar file. * * @author Tobias Lfstrand */ public class JarFileHotBeanModuleLoader extends URLClassLoader implements HotBeanModuleLoader {
From source file lucee.commons.io.res.util.ResourceClassLoader.java
/** * Classloader that load classes from resources */ public final class ResourceClassLoader extends URLClassLoader implements Closeable { private List<Resource> resources = new ArrayList<Resource>();
From source file br.com.uol.runas.classloader.JarClassLoader.java
public class JarClassLoader extends URLClassLoader { public static final String JAR_PREFIX_PROTOCOL = "jar:"; public static final String JAR_SUFIX_SPEC = "!/"; private final ClassLoaderGC classLoaderGC;
From source file org.springframework.boot.devtools.restart.classloader.RestartClassLoader.java
/**
* Disposable {@link ClassLoader} used to support application restarting. Provides parent
* last loading for the specified URLs.
*
* @author Andy Clement
* @author Phillip Webb
From source file org.ow2.chameleon.core.utils.FrameworkClassLoader.java
/**
* The classloader responsible to load the framework classes and providing access to the classes and resources from
* the Jar's located in the 'libs' directory. The 'libs' directory contain non-bundle jars that are scanned and
* 'exported' by the framework. This feature only work for Apache Felix (no Eclipse Equinox is not supported).
* <p>
* The Framework is loaded in a different classloader to access the jar contained in the 'libs' directory.
From source file org.trianacode.taskgraph.tool.ToolClassLoader.java
/**
* Class Description Here...
*
* @author Andrew Harrison
* @version $Revision:$
*/
From source file org.apache.falcon.util.HdfsClassLoader.java
/** * Helper class loader that fetches jars from HDFS location and loads into JVM. */ public class HdfsClassLoader extends URLClassLoader {