The conf/web.xml seems to define two parameters ( development, reloading
) for the JSP page compiler that do not seem to work.  Can anyone
confirm that these work for them, or has the  <Context reloadable="true"
/> replaced this type of configuration? 

Example:

<!-- fragment from conf/web.xml --->

    <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>development</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>reloading</param-name>
            <param-value>true</param-value>
        </init-param>
        <load-on-startup>3</load-on-startup>
    </servlet>

<!-- end fragment -->

Andrew Conrad
617.470.8045
[EMAIL PROTECTED] 


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

Reply via email to