指定Web应用的默认编码集,相当于调用HttpServletRequest的setCharacterEncoding方法
<constant name="struts.i18n.encoding" value="UTF-8" />
开发模式下使用可以打印出更详细的错误信息
<constant name="struts.devMode" value="true" />
动态方法调用 !
<constant name="struts.enable.DynamicMethodInvocation" value="true"></constant>
当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false
设置为true之后,每次修改struts.xml配置文件之后不需要重启服务器
<constant name="struts.configuration.xml.reload" value="true" />