You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by re...@apache.org on 2006/05/19 16:37:52 UTC

svn commit: r407807 - /cocoon/trunk/core/cocoon-webapp/src/main/webapp/WEB-INF/web.xml

Author: reinhard
Date: Fri May 19 07:37:51 2006
New Revision: 407807

URL: http://svn.apache.org/viewvc?rev=407807&view=rev
Log:
reformulate classloading behaviour

Modified:
    cocoon/trunk/core/cocoon-webapp/src/main/webapp/WEB-INF/web.xml

Modified: cocoon/trunk/core/cocoon-webapp/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-webapp/src/main/webapp/WEB-INF/web.xml?rev=407807&r1=407806&r2=407807&view=diff
==============================================================================
--- cocoon/trunk/core/cocoon-webapp/src/main/webapp/WEB-INF/web.xml (original)
+++ cocoon/trunk/core/cocoon-webapp/src/main/webapp/WEB-INF/web.xml Fri May 19 07:37:51 2006
@@ -47,9 +47,10 @@
     <description>Cocoon demo web application</description>
 
     <servlet-class>org.apache.cocoon.servlet.CocoonServlet</servlet-class>
-    <!-- If you don't want to use the ParanoidClassLoader and want to rely
-         on the normal context classloader, remove the classloader-class
-         parameter -->
+    <!-- If you don't want to use the ParanoidClassLoader, that reverses
+         the classloading hierarchy and loads the jars and classes of the
+         web application _first_, and want to rely on the normal web application
+         classloading, remove the "classloader-class" parameter. -->
     <init-param>
       <param-name>classloader-class</param-name>
       <param-value>org.apache.cocoon.servlet.ParanoidClassLoader</param-value>