0

web.xml の checkInterval 設定を変更したい。

現在の web.xml ではコメントアウトされています。tomcat によって認識されるように、web.xml dpo のどのセクションを更新しますか?

したがって、web.xmlには次のものがあります:

<!--   checkInterval       If development is false and checkInterval is   -->
  <!--                       greater than zero, background compilations are -->
  <!--                       enabled. checkInterval is the time in seconds  -->
  <!--                       between checks to see if a JSP page (and its   -->
  <!--                       dependent files) needs to  be recompiled. [0]  -->

tomcat によって認識されるように、checkInterval パラメータのコメントを解除するにはどうすればよいですか?

4

3 に答える 3

1

以下は例です。デフォルト値が 60 であることを考慮してください。

<init-param>
        <param-name>checkInterval</param-name>
        <param-value>30</param-value>
</init-param>
于 2012-06-13T14:32:26.050 に答える
0

はい、他の回答と同様にinit-paramで、コメントの下のサーブレットセクション内にあります(これがコメントの適用対象であるため)。

<servlet>
  <servlet-name>jsp</servlet-name>
  <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
  <init-param>
    <param-name>checkInterval</param-name>
    <param-value>120</param-value>
  </init-param>
  ....
于 2012-06-13T14:48:23.910 に答える