You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by gl...@apache.org on 2001/03/21 13:36:58 UTC

cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper Constants.java

glenn       01/03/21 04:36:57

  Modified:    jasper/src/share/org/apache/jasper Constants.java
  Log:
  The classpath needed by javac is now built dynamically by using getURLs
  on the Context URLClassLoader and all its parent class loaders except
  for the system class loader.  This removes the need to pass a context
  attribute for the classpath between Tomcat and Jasper.
  
  This also fixed a problem with a bad class path element due to
  Jasper not understanding jndi named URL's.
  
  Revision  Changes    Path
  1.9       +0 -9      jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/Constants.java
  
  Index: Constants.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/Constants.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Constants.java	2001/02/08 13:37:08	1.8
  +++ Constants.java	2001/03/21 12:36:51	1.9
  @@ -104,15 +104,6 @@
        * Other servlet engines can choose to have this attribute if they 
        * want to have this JSP engine running on them. 
        */
  -    //public static final String SERVLET_CLASSPATH = "org.apache.tomcat.jsp_classpath";
  -    public static final String SERVLET_CLASSPATH = "org.apache.catalina.jsp_classpath";
  -
  -    /**
  -     * FIXME
  -     * ServletContext attribute for classpath. This is tomcat specific. 
  -     * Other servlet engines can choose to have this attribute if they 
  -     * want to have this JSP engine running on them. 
  -     */
       //public static final String SERVLET_CLASS_LOADER = "org.apache.tomcat.classloader";
       public static final String SERVLET_CLASS_LOADER = "org.apache.catalina.classloader";