黑马程序员技术交流社区
标题:
struts2常用常量设置整理
[打印本页]
作者:
王胜炎
时间:
2012-9-25 20:48
标题:
struts2常用常量设置整理
struts2常用常量设置整理
(1)<constant name="struts.i18n.encoding" value="UTF-8"/>
<!--制定默认编码集,作用于HttpServletRequest的setCharacterEncoding方法和freemarker,velocity的输-->
(2)<constant name="struts.action.extension" value="do"/>
<!--该属性指定需要Struts2处理的请求后缀,该属性的默认值是action,既所有匹配“*.action”的请求都由struts2处理。如果用户有多个需要指定的后缀,则多个后缀间以英文逗号(,)隔开。-->
(3)<constant name="struts.serve.static.browserCache" value="false"/>
<!--设置浏览器是否缓存静态内容,默认值为true(生产环境下使用),开发阶段最好关闭-->
(4)<constant name="struts.configuration.xml.reload" value="true"/>
<!--当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false(生产环境下使用),好发阶段打开-->
(5)<constant name="struts.devMode" value="true"/>
<!--开发模式下使用,这样可以打印出更详细的错误信息-->
(6)<constant name="struts.ui.theme" vlue="simple"/>
<!--默认的视图主题-->
(7)<constant name="struts.objectFactory" value="spring"/>
<!--于spring集成时,指定由spring负责action对象的创建-->
(8)<constant name="struts.enable.DynameMethodlnvocation" value="false"/>
<!--该属性设置Struts2是否支持动态方法调用,该属性的默认值为true,设置为false则关闭该动态调用-->
(9)<constant name="struts.mutipart.maxSize" value="10701096"/>
<!--上传文件的大小设置-->
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2