markt 2004/02/02 13:39:28
Modified: webapps/docs class-loader-howto.xml
Log:
- Fix 13805. Update docs to show that the shared directory is relative to CATALINA_BASE
not CATALINA_HOME.
- Reported by Michael Eriksson.
Revision Changes Path
1.9 +6 -6 jakarta-tomcat-catalina/webapps/docs/class-loader-howto.xml
Index: class-loader-howto.xml
===================================================================
RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/class-loader-howto.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- class-loader-howto.xml 1 Feb 2004 22:43:21 -0000 1.8
+++ class-loader-howto.xml 2 Feb 2004 21:39:28 -0000 1.9
@@ -27,9 +27,9 @@
application archive.</li>
<li>For classes and resources that must be shared across all web applications,
place unpacked classes and resources under
- <code>$CATALINA_HOME/shared/classes</code>, or place JAR files
+ <code>$CATALINA_BASE/shared/classes</code>, or place JAR files
containing those classes and resources under
- <code>$CATALINA_HOME/shared/lib</code>.</li>
+ <code>$CATALINA_BASE/shared/lib</code>.</li>
</ul>
</section>
@@ -172,8 +172,8 @@
web applications (unless Tomcat internal classes also need access,
in which case you should put them in the <strong>Common</strong>
class loader instead). All unpacked classes and resources in
- <code>$CATALINA_HOME/shared/classes</code>, as well as classes and
- resources in JAR files under <code>$CATALINA_HOME/shared/lib</code>, are
+ <code>$CATALINA_BASE/shared/classes</code>, as well as classes and
+ resources in JAR files under <code>$CATALINA_BASE/shared/lib</code>, are
made visible through this class loader. If multiple Tomcat instances are
run from the same binary using the $CATALINA_BASE environment variable,
then this classloader repositories are relative to $CATALINA_BASE rather
@@ -220,8 +220,8 @@
<li><em>$CATALINA_HOME/common/classes</em></li>
<li><em>$CATALINA_HOME/common/endorsed/*.jar</em></li>
<li><em>$CATALINA_HOME/common/lib/*.jar</em></li>
-<li><em>$CATALINA_HOME/shared/classes</em></li>
-<li><em>$CATALINA_HOME/shared/lib/*.jar</em></li>
+<li><em>$CATALINA_BASE/shared/classes</em></li>
+<li><em>$CATALINA_BASE/shared/lib/*.jar</em></li>
</ul>
</section>
---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
|