我想更改web.xml中的checkInterval设置。

在我当前的web.xml中已将其注释掉。我在web.xml dpo的哪个部分进行更新,以使其被tomcat识别?

所以在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]  -->


我如何取消对checkInterval参数的注释,以便它可以被tomcat识别?

最佳答案

下面是一个例子。请考虑默认值为60。

<init-param>
        <param-name>checkInterval</param-name>
        <param-value>30</param-value>
</init-param>

10-04 11:09