remm 2002/10/24 06:53:45
Modified: catalina build.xml
Log:
- Since it didn't get vetoed, I'm going forward with the CL configurability feature.
- Adds new catalina.properties file which allows to configure the three Catalina
classloaders. This should allow to embed Tomcat in a more flexible way
without using the Embedded class.
- The functionality is far from being done. For example, it would be desirable to
be able to specify the configuration source (currently hardcoded to
conf/server.xml) in the properties file.
Revision Changes Path
1.28 +4 -0 jakarta-tomcat-catalina/catalina/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/build.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- build.xml 18 Oct 2002 21:34:28 -0000 1.27
+++ build.xml 24 Oct 2002 13:53:45 -0000 1.28
@@ -844,6 +844,8 @@
<fileset dir="${catalina.build}/server/classes">
<include name="org/apache/catalina/startup/Bootstrap.class" />
<include name="org/apache/catalina/startup/BootstrapService.class" />
+ <include name="org/apache/catalina/startup/catalina.properties" />
+ <include name="org/apache/catalina/startup/CatalinaProperties.class" />
<include name="org/apache/catalina/startup/ClassLoaderFactory.class" />
<include name="org/apache/catalina/startup/Tool.class" />
<include name="org/apache/catalina/loader/StandardClassLoader*.class" />
@@ -863,6 +865,8 @@
<exclude name="org/apache/naming/**" />
<exclude name="org/apache/catalina/startup/Bootstrap.class" />
<exclude name="org/apache/catalina/startup/BootstrapService.class" />
+ <exclude name="org/apache/catalina/startup/catalina.properties" />
+ <exclude name="org/apache/catalina/startup/CatalinaProperties.class" />
<exclude name="org/apache/catalina/startup/ClassLoaderFactory.class" />
<exclude name="org/apache/catalina/startup/Tool.class" />
<exclude name="org/apache/catalina/loader/StandardClassLoader*.class" />
--
To unsubscribe, e-mail: <mailto:tomcat-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-dev-help@;jakarta.apache.org>