| Home >> All >> org >> apache >> catalina >> [ loader Javadoc ] |
org.apache.catalina.loader: Javadoc index of package org.apache.catalina.loader.
Package Samples:
org.apache.catalina.loader
Classes:
WebappClassLoader: Specialized web application class loader. This class loader is a full reimplementation of the URLClassLoader from the JDK. It is desinged to be fully compatible with a normal URLClassLoader , although its internal behavior may be completely different. IMPLEMENTATION NOTE - This class loader faithfully follows the delegation model recommended in the specification. The system class loader will be queried first, then the local repositories, and only then delegation to the parent class loader will occur. This allows the web application to override any shared class except the classes from J2SE. Special ...
StandardClassLoader: Subclass implementation of java.net.URLClassLoader that knows how to load classes from disk directories, as well as local and remote JAR files. It also implements the Reloader interface, to provide automatic reloading support to the associated loader. In all cases, URLs must conform to the contract specified by URLClassLoader - any URL that ends with a "/" character is assumed to represent a directory; all other URLs are assumed to be the address of a JAR file. IMPLEMENTATION NOTE - Local repositories are searched in the order they are added via the initial constructor and/or any subsequent calls ...
WebappLoader: Classloader implementation which is specialized for handling web applications in the most efficient way, while being Catalina aware (all accesses to resources are made through the DirContext interface). This class loader supports detection of modified Java classes, which can be used to implement auto-reload support. This class loader is configured by adding the pathnames of directories, JAR files, and ZIP files with the addRepository() method, prior to calling start() . When a new class is required, these repositories will be consulted first to locate the class. If it is not present, the system ...
Reloader: Internal interface that ClassLoader implementations may optionally implement to support the auto-reload functionality of the classloader associated with the context.
StandardClassLoaderMBean: MBean interface for StandardClassLoader, to allow JMX remote management.
ResourceEntry: Resource entry.
Constants
| Home | Contact Us | Privacy Policy | Terms of Service |