remm        2002/10/24 06:53:33

  Modified:    catalina/src/conf catalina.properties
  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.2       +3 -4      jakarta-tomcat-catalina/catalina/src/conf/catalina.properties
  
  Index: catalina.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/conf/catalina.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- catalina.properties       17 Oct 2002 14:52:03 -0000      1.1
  +++ catalina.properties       24 Oct 2002 13:53:33 -0000      1.2
  @@ -28,7 +28,7 @@
   #     "foo/*.jar": Add all the JARs of the specified folder as class 
   #                  repositories
   #     "foo/bar.jar": Add bar.jar as a class repository
  -common.loader=common/classes,common/lib/*.jar
  
+common.loader=${catalina.home}/common/classes,${catalina.home}/common/endorsed/*.jar,${catalina.home}/common/lib/*.jar
   
   #
   # List of comma-separated paths defining the contents of the "server" 
  @@ -40,7 +40,7 @@
   #     "foo/*.jar": Add all the JARs of the specified folder as class 
   #                  repositories
   #     "foo/bar.jar": Add bar.jar as a class repository
  -server.loader=server/classes,server/lib/*.jar
  +server.loader=${catalina.home}/server/classes,${catalina.home}/server/lib/*.jar
   
   #
   # List of comma-separated paths defining the contents of the "shared" 
  @@ -52,5 +52,4 @@
   #     "foo/*.jar": Add all the JARs of the specified folder as class 
   #                  repositories
   #     "foo/bar.jar": Add bar.jar as a class repository 
  -shared.loader=shared/classes,shared/lib/*.jar
  -
  +shared.loader=${catalina.home}/shared/classes,${catalina.home}/shared/lib/*.jar
  
  
  

--
To unsubscribe, e-mail:   <mailto:tomcat-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-dev-help@;jakarta.apache.org>

Reply via email to