strut2 常量

时间:2015-01-01 17:14:14   收藏:0   阅读:224
 <!-- 设置url请求后缀 -->
    <constant name="struts.action.extension" value="do,action,html,htm"></constant>
    <!-- 指定Web应用的默认编码集,相当于调用HttpServletRequest的setCharacterEncoding方法 -->
    <constant name="struts.i18n.encoding" value="UTF-8" />
    <!-- 设置浏览器是否缓存静态内容,默认值为true(生产环境下使用),开发阶段最好关闭 -->
    <constant name="struts.serve.static.browserCache" value="false" />
    <!-- 当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false(生产环境下使用),开发阶段最好打开 -->
    <constant name="struts.configuration.xml.reload" value="true" />
    <!-- 开发模式下使用,这样可以打印出更详细的错误信息 -->
    <constant name="struts.devMode" value="true" /> 

<!-- 默认的视图主题 -->  
<constant name="struts.ui.theme" value="simple" />  
<!-- spring 托管 -->  
<constant name="struts.objectFactory" value="spring" />

 

原文:http://www.cnblogs.com/kailing-con/p/4197333.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!