Chuck,

then the docs are quite misleading.

In the 5.5-docs
(http://tomcat.apache.org/tomcat-5.5-doc/class-loader-howto.html) is
said:

<quote>
n a J2SE 2 (that is, J2SE 1.2 or later) environment, class loaders are
arranged in a parent-child tree. Normally, when a class loader is
asked to load a particular class or resource, it delegates the request
to a parent class loader first, and then looks in its own repositories
only if the parent class loader(s) cannot find the requested class or
resource. The model for web application class loaders differs slightly
from this, as discussed below, but the main principles are the same.
</quote>

Then, when you scroll down to almost the end of the page, it is said:

<quote>
As mentioned above, the web application class loader diverges from the
default Java 2 delegation model (in accordance with the
recommendations in the Servlet Specification, version 2.3, section
9.7.2 Web Application Classloader). When a request to load a class
from the web application's WebappX class loader is processed, this
class loader will look in the local repositories first, instead of
delegating before looking. There are exceptions. Classes which are
part of the JRE base classes cannot be overriden. For some classes
(such as the XML parser components in J2SE 1.4+), the J2SE 1.4
endorsed feature can be used (see the common classloader definition
above). Last, any JAR containing servlet API classes will be ignored
by the classloader. All other class loaders in Tomcat 5 follow the
usual delegation pattern.
</quote>

Well, I wouldn't call this behaviour "slighty different" from the
default Java-behaviour - it least I just now got caught in that trap.

Cheers

Gregor
-- 
what's puzzlin' you, is the nature of my game
gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2
gpgp-key available @ http://pgpkeys.pca.dfn.de:11371

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to