Stuts2的"struts.devMode"设置成true后,不起作用,仍需要重启tomcat

来源:互联网 发布:linux shell脚本例子 编辑:程序博客网 时间:2024/05/16 18:55

在项目的struts.xml加入了常量配置:
<constant name="struts.devMode" value="true" />
后,修改struts.xml仍然需要重启tomcat,和没有配置这个常量是一样的。

不要用

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

改成:

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

就可以了。


下面是4个开发模式常用配置的简介

1.开启使用开发模式,详细错误提示

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

2.指定每次请求到达,重新加载资源文件

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

3.指定每次配置文件更改后,自动重新加载

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

4.指定XSLT Result使用样式表缓存

<constant name="struts.xslt.nocache" value="true"/>
阅读全文
0 0
原创粉丝点击