<!--
指定请求url与action映射器,默认为org.apache.struts2.dispatcher.mapper.DefaultActionMapper
-->
<constant name="struts.mapper.class"
value="org.apache.struts2.dispatcher.mapper.DefaultActionMapper"
/>
<!-- 是否允许使用表达式语法,默认为true.
-->
<constant name="struts.tag.altSyntax" value="true" />
<!-- 模板目录 -->
<cosntant name="struts.ui.templateDir" value="template"
/>
<!-- 设置模板类型. 可以为 ftl, vm,
or jsp -->
<cosntant name="struts.ui.templateSuffix" value="ftl" />
<!-- 定位velocity.properties 文件.
默认velocity.properties -->
<cosntant name="struts.velocity.configfile" value="velocity.properties" />
<!-- 设置velocity的context. -->
<cosntant name="struts.velocity.contexts"
value="...."
/>
<!-- 定位toolbox
-->
<cosntant name="struts.velocity.toolboxlocation" value="...." />
<!-- 指定web应用的端口 -->
<cosntant name="struts.url.http.port" value="80" />
<!--
该属性指定Struts2应用加载用户自定义的属性文件,该自定义属性文件指定的属性不会覆盖
struts.properties文件中指定的属性。如果需要加载多个自定义属性文件,多个自定义属性文
件的文件名以英文逗号(,)隔开。(也就是说不要改写struts.properties!)
-->
<constant name="struts.custom.properties"
value="application,org/apache/struts2/extension/custom" />
<!-- 指定加密端口
-->
<cosntant name="struts.url.https.port" value="443" />
<!--
设置生成url时,是否包含参数.值可以为: none,get or all -->
<cosntant name="struts.url.includeParams" value="get" />
<!--
设置要加载的国际化资源文件,以逗号分隔. -->
<cosntant name="struts.custom.i18n.resources" value="application"
/>
<!--
对于一些web应用服务器不能处理HttpServletRequest.getParameterMap(), 像
WebLogic,Orion, and
OC4J等,须设置成true,默认为false.
-->
<cosntant name="struts.dispatcher.parametersWorkaround"
value="false"
/>
<!--
指定freemarker管理器 -->
<cosntant name="struts.freemarker.manager.classname"
value="org.apache.struts2.views.freemarker.FreemarkerManager"
/>
<!--
设置是否对freemarker的模板设置缓存,效果相当于把template拷贝到 WEB_APP/templates. -->
<cosntant name="struts.freemarker.templatesCache" value="false" />
<!--
通常不需要修改此属性. -->
<cosntant name="struts.freemarker.wrapper.altMap" value="true" />
<!-- 指定xslt
result是否使用样式表缓存.开发阶段设为true,发布阶段设为false. -->
<cosntant name="struts.xslt.nocache" value="false" />
<!--
设置struts自动加载的文件列表. -->
<cosntant name="struts.configuration.files"
value="struts-default.xml,struts-plugin.xml,struts.xml" />
<!--
设定是否一直在最后一个slash之前的任何位置选定namespace. -->
<cosntant name="struts.mapper.alwaysSelectFullNamespace"
value="false" />
<!-- spring 托管 与spring集成时需要用到 -->
<constant name="struts.objectFactory" value="spring" />
<!--
指定加载struts2配置文件管理器,默认为org.apache.struts2.config.DefaultConfiguration
,开发者可以自定义配置文件管理器,该类要实现Configuration接口,可以自动加载struts2配置文件。
-->
<constant name="struts.configuration"
value="org.apache.struts2.config.DefaultConfiguration" />
<!--
设置默认的locale和字符编码 国际化使用 -->
<constant
name="struts.locale" value="zh_CN" />
<constant name="struts.i18n.encoding" value="UTF-8" />
<!--
指定Struts的工厂类 -->
<constant name="struts.objectFactory" value="spring"></constant>
<!--
指定spring框架的装配模式,装配方式有: name, type, auto,
and constructor (name
是默认装配模式)
-->
<constant name="struts.objectFactory.spring.autoWire" value="name" />
<!-- 该属性指定整合spring时,是否对bean进行缓存,值为true or false,默认为true
-->
<cosntant name="struts.objectFactory.spring.useClassCache" />
<!--
指定类型检查,包含tiger和notiger -->
<cosntant name="struts.objectTypeDeterminer" value="tiger" />
原文:http://www.cnblogs.com/zmpandzmp/p/3649037.html