Struts2常量的具体用法实例

时间:2021-10-13 04:25:08
 1   <!-- 指定Web应用的默认编码集,相当于调用HttpServletRequest的setCharacterEncoding方法 --> 
2 <constant name="struts.i18n.encoding" value="UTF-8" />
3
4 <!-- 国际化-把资源文件定为全局变量 baseName为名字 -->
5 <constant name="struts.custom.i18n.resources" value="baseName" />
6
7 <!--该属性指定需要Struts 2处理的请求后缀,该属性的默认值是action,即所有匹配*.action的请求都由Struts2处理。
8 如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开-->
9 <constant name="struts.action.extension" value="do,action,htm,html,jsp" />
10
11 <!-- 设置浏览器是否缓存静态内容,默认值为true(生产环境下使用),开发阶段最好关闭 -->
12 <constant name="struts.serve.static.browserCache" value="false" />
13
14 <!-- 当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false(生产环境下使用),开发阶段最好打开-->
15 <constant name="struts.configuration.xml.reload" value="true" />
16
17 <!-- 开发模式下使用,这样可以打印出更详细的错误信息 -->
18 <constant name="struts.devMode" value="true" />
19
20 <!-- 默认的视图主题 -->
21 <constant name="struts.ui.theme" value="simple" />
22
23 <!-- spring 托管 -->
24 <constant name="struts.objectFactory" value="spring" />
25
26 <!--指定加载struts2配置文件管理器,默认为org.apache.struts2.config.DefaultConfiguration
27 开发者可以自定义配置文件管理器,该类要实现Configuration接口,可以自动加载struts2配置文件-->
28 <constant name="struts.configuration" value="org.apache.struts2.config.DefaultConfiguration" />
29
30 <!-- 设置默认的locale和字符编码 -->
31 <constant name="struts.locale" value="zh_CN" />
32 <constant name="struts.i18n.encoding" value="GBK" />
33
34 <!--指定spring框架的装配模式,装配方式有: name, type, auto, and constructor (name是默认装配模式) -->
35 <constant name="struts.objectFactory.spring.autoWire" value="name" />
36
37 <!-- 该属性指定整合spring时,是否对bean进行缓存,值为true or false,默认为true -->
38 <cosntant name="struts.objectFactory.spring.useClassCache" value="true"/>
39
40 <!-- 指定类型检查,包含tiger和notiger -->
41 <cosntant name="struts.objectTypeDeterminer" value="tiger" />
42
43 <!-- 该属性指定处理 MIME-type multipart/form-data,文件上传 -->
44 <constant name="struts.multipart.parser" value="cos" />
45 <constant name="struts.multipart.parser" value="pell" />
46 <constant name="struts.multipart.parser" value="jakarta" />
47
48 <!-- 指定上传文件时的临时目录,默认使用 javax.servlet.context.tempdir -->
49 <constant name="struts.multipart.saveDir" value="/tmpuploadfiles" />
50
51 <!-- 该属性指定Struts 2文件上传中整个请求内容允许的最大字节数 -->
52 <constant name="struts.multipart.maxSize" value="2097152" />
53
54 <!--该属性指定Struts2应用加载用户自定义的属性文件,该自定义属性文件指定的属性不会覆盖struts.properties文件中指定的属性。
55 如果需要加载多个自定义属性文件,多个自定义属性文
56 件的文件名以英文逗号(,)隔开。(也就是说不要改写struts.properties!) -->
57 <constant name="struts.custom.properties" value="application,org/apache/struts2/extension/custom" />
58
59 <!-- 指定请求url与action映射器,默认为org.apache.struts2.dispatcher.mapper.DefaultActionMapper -->
60 <constant name="struts.mapper.class" value="org.apache.struts2.dispatcher.mapper.DefaultActionMapper" />
61
62 <!-- 设置是否支持动态方法调用,true为支持,false不支持. -->
63 <constant name="struts.enable.DynamicMethodInvocation" value="true" />
64
65 <!-- 设置是否可以在action中使用斜线,默认为false不可以,想使用需设置为true. -->
66 <constant name="struts.enable.SlashesInActionNames" value="true" />
67
68 <!-- 是否允许使用表达式语法,默认为true. -->
69 <constant name="struts.tag.altSyntax" value="true" />
70
71 <!-- 设置当struts.xml文件改动时,是否重新加载 -->
72 <cosntant name="struts.configuration.xml.reload" value="true" />