On Sun, 2002-09-08 at 08:39, Glenn Nielsen wrote:
> I found a few problems using jikes with Jasper 2.  These have been fixed
> and should be in the new nightly build and will be in the next Tomcat 4.1.x
> release.  Refer to the comments in conf/web.xml for configuring jikes.
> 
> The jspCompilerPlugin init paramter no longer exists.  You now use the
> compiler init paramter and set it to "jikes".
> 
> Regards,
> 
> Glenn

Glenn, I must be reading something you are not.  In the web.xml comments
that you referred to:
  <!-- If you wish to use Jikes to compile JSP
pages:                       -->
  <!-- * Set the "classpath" initialization parameter
appropriately         -->
  <!--   for this web
application.                                          -->
  <!-- * Set the "jspCompilerPlugin" initialization parameter
to            -->
  <!--  
"org.apache.jasper.compiler.JikesJavaCompiler".                    -->

So if it diesn't exist, then the comments in the web.xml for 4.1.10 need
to be fixed.  However, for me, 

    <servlet>
        <servlet-name>jsp</servlet-name>
       
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
        <init-param>
            <param-name>logVerbosityLevel</param-name>
            <param-value>WARNING</param-value>
         </init-param>
         <init-param>
            <param-name>jspCompilerPlugin</param-name>
           
<param-value>org.apache.jasper.compiler.JikesJavaCompiler</param-value>
        </init-param>
        <load-on-startup>3</load-on-startup>
    </servlet>

is to be working.
-- 
Brian Millett                    
Enterprise Consulting Group     "Shifts in paradigms
(314) 205-9030                     often cause nose bleeds."
[EMAIL PROTECTED]                   Greg Glenn


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to