Struct2 的开发模式的配置问题

官方的struct.xml 示例中,如果要切换为开发模式,往往是要在<struct>中加下以下内容

<constant name="struts.devMode" value="true"/>

但这么改了之后却发现,我每次更改了struct2的配置文件后,还是必须要重启tomcat才会生效

经过研究发现,如果改成

<constant name="struts.configuration.xml.reload" value="true"/>

就可以了。

 下面是4个开发模式常用配置的简介---
    <!-- 开启使用开发模式,详细错误提示 -->
    <!-- <constant name="struts.devMode" value="true"/>-->


    <!-- 指定每次请求到达,重新加载资源文件 -->
    <!-- <constant name="struts.i18n.reload" value="true"/>-->


    <!-- 指定每次配置文件更改后,自动重新加载 -->
    <!-- <constant name="struts.configuration.xml.reload" value="true"/>-->


    <!-- 指定XSLT Result使用样式表缓存 -->
    <!-- <constant name="struts.xslt.nocache" value="true"/>-->



上一篇:微操作系统从官方下载的方法


下一篇:项目的一些命名规范