Struts2常量的具体用法实例 2
1. <!-- 设置是否每次请求,都重新加载资源文件,默认值为false. -->
2. <cosntant name="struts.i18n.reload" value="false" />
3.
4. <!-- 标准的UI主题,默认的UI主题为xhtml,可以为simple,xhtml或ajax -->
5. <cosntant name="struts.ui.theme" value="xhtml" />
6.
7. <!-- 模板目录 -->
8. <cosntant name="struts.ui.templateDir" value="template" />
9.
10. <!-- 设置模板类型. 可以为 ftl, vm, or jsp -->
11. <cosntant name="struts.ui.templateSuffix" value="ftl" />
12.
13. <!-- 定位velocity.properties 文件. 默认velocity.properties -->
14. <cosntant name="struts.velocity.configfile" value="velocity.properties" />
15.
16. <!-- 设置velocity的context. -->
17. <cosntant name="struts.velocity.contexts" value="...." />
18.
19. <!-- 定位toolbox -->
20. <cosntant name="struts.velocity.toolboxlocation" value="...." />
21.
22. <!-- 指定web应用的端口 -->
23. <cosntant name="struts.url.http.port" value="80" />
24.
25. <!-- 指定加密端口 -->
26. <cosntant name="struts.url.https.port" value="443" />
27.
28. <!-- 设置生成url时,是否包含参数.值可以为: none,get or all -->
29. <cosntant name="struts.url.includeParams" value="get" />
30.
31. <!-- 设置要加载的国际化资源文件,以逗号分隔. -->
32. <cosntant name="struts.custom.i18n.resources" value="application" />
33.
34. <!-- 对于一些web应用服务器不能处理HttpServletRequest.getParameterMap(),
35. >
36. <cosntant name="struts.dispatcher.parametersWorkaround" value="false" />
37.
38. <!-- 指定freemarker管理器 -->
39. <cosntant name="struts.freemarker.manager.classname" value="org.apache.struts2.views.freemarker.FreemarkerManager" />
40.
41. <!-- 设置是否对freemarker的模板设置缓存,效果相当于把template拷贝到 WEB_APP/templates. -->
42. <cosntant name="struts.freemarker.templatesCache" value="false" />
43.
44. <!-- 通常不需要修改此属性. -->
45. <cosntant name="struts.freemarker.wrapper.altMap" value="true" />
46.
47. <!-- 指定xslt result是否使用样式表缓存.开发阶段设为true,发布阶段设为false. -->
48. <cosntant name="struts.xslt.nocache" value="false" />
49.
50. <!-- 设置struts自动加载的文件列表. -->
51. <cosntant name="struts.configuration.files" value="struts-default.xml,struts-plugin.xml,struts.xml" />
52.
53. <!-- 设定是否一直在最后一个slash之前的任何位置选定namespace. -->
54. <cosntant name="struts.mapper.alwaysSelectFullNamespace" value="false" />
55. </struts>