In Tomcat 5.5 (or Jboss 4.0 using Tomcat 5.5),
can I load all JSP pages on deployment?

I don't want to precompile in my build script,
but I do want the server to compile all jsp pages as soon as they are deployed.

I can load one jsp page on startup like this:

    <servlet>
        <servlet-name>HomeJsp</servlet-name>
        <jsp-file>/home.jsp</jsp-file>
        <load-on-startup>1</load-on-startup>
    </servlet>

But I want to do something like

        <jsp-property-group>
            <display-name>allJsp</display-name>
            <url-pattern>*.jsp</url-pattern>
            <load-on-startup>1</load-on-startup>
        </jsp-property-group>
(this isn't allowed in the web.xml)

Thanks for any and all help,
Geoffrey


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

Reply via email to