struts2 中的constant

来源:互联网 发布:mac diva 试色 编辑:程序博客网 时间:2024/05/10 09:55

<!-- 指定Web应用的默认编码集,相当于调用 HttpServletRequest的 setCharacterEncoding方法-->  
<constant name="struts.i18n.encoding" value="UTF-8"/>  
<!--   
该属性指定需要Struts 2处理的请求后缀,该属性的默认值是action,即所有匹配*.action的请求都由Struts 2处理。  
如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开。  
-->  
<constant name="struts.action.extension" value="do"/>  
<!-- 设置浏览器是否缓存静态内容,默认值为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"/>  
<!-- 该属性指定Struts 2中的action由Spring容器创建  -->  
<constant name="struts.objectFactory" value="spring"/>

   其他常量

<constantname="struts.action.excludePattern"value="/ShitServlet"/><constantname="struts.enable.DynamicMethodInvocation"value="false"/><constantname="struts.multipart.maxSize"value="1024000"/><!--最大上传1M的图片--><constantname="struts.multipart.saveDir"value="D:/temp"/><!--临时目录--><constantname="struts.convention.result.path"value="/"/><constantname="struts.convention.classes.reload"value="true"/><constantname="struts.devMode"value="true"/><constantname="struts.ui.theme"value="simple"/><constantname="struts.i18n.encoding"value="UTF-8"/>

<constantname="struts.custom.i18n.resources"value="message"/>

<constantname="struts.locale"value="zh-cn"/>

    <!--可上传的图片后缀-->

<constantname="com.chinacnd.allowed.images"value="gif,jpeg,jpg,png,bmp"/>


原创粉丝点击