Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] Precompiled jsp files and on modification compilation

Hi

I was just wondering if its possible to put precompiled jsps and get the Jsp servlet to recompile if the jsp file changes?

My current config:
  <servlet-name>jsp</servlet-name>
        <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
        <init-param>
            <param-name>development</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>modificationTestInterval</param-name>
            <param-value>5</param-value>
        </init-param>
        <init-param>
            <param-name>compilerTargetVM</param-name>
            <param-value>1.7</param-value>
        </init-param>

        <init-param>
            <param-name>usePrecompiled</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>use-precompiled</param-name>
            <param-value>true</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>

--
Idar

Back to the top