转自
 
 
### 指定加载struts2配置文件管理器,默认为org.apache.struts2.config.DefaultConfiguration
struts.properties常用配置_职场### 开发者可以自定义配置文件管理器,该类要实现Configuration接口,可以自动加载struts2配置文件。
struts.properties常用配置_职场# struts.configuration=org.apache.struts2.config.DefaultConfiguration
struts.properties常用配置_职场
struts.properties常用配置_职场### 设置默认的locale和字符编码
struts.properties常用配置_职场# struts.locale
=en_US
struts.properties常用配置_职场struts.i18n.encoding
=UTF-8
struts.properties常用配置_职场
struts.properties常用配置_职场
struts.properties常用配置_职场### 指定struts的工厂类
struts.properties常用配置_职场# struts.objectFactory 
= spring
struts.properties常用配置_职场
struts.properties常用配置_职场### 指定spring框架的装配模式
struts.properties常用配置_职场### 装配方式有: name
, type, auto, and constructor (name 是默认装配模式)
struts.properties常用配置_职场struts.objectFactory.spring.autoWire 
= name
struts.properties常用配置_职场
struts.properties常用配置_职场### 该属性指定整合spring时,是否对bean进行缓存,值为true or false
,默认为true.
struts.properties常用配置_职场struts.objectFactory.spring.useClassCache 
= true
struts.properties常用配置_职场
struts.properties常用配置_职场### 指定类型检查
struts.properties常用配置_职场#struts.objectTypeDeterminer 
= tiger
struts.properties常用配置_职场#struts.objectTypeDeterminer 
= notiger
struts.properties常用配置_职场
struts.properties常用配置_职场### 该属性指定处理 MIME-type multipart/form-data,文件上传
struts.properties常用配置_职场# struts.multipart.parser
=cos
struts.properties常用配置_职场# struts.multipart.parser
=pell
struts.properties常用配置_职场struts.multipart.parser
=jakarta
struts.properties常用配置_职场# 指定上传文件时的临时目录,默认使用 javax.servlet.context.tempdir 
struts.properties常用配置_职场struts.multipart.saveDir
=
struts.properties常用配置_职场struts.multipart.maxSize
=2097152
struts.properties常用配置_职场
struts.properties常用配置_职场### 加载自定义属性文件 (不要改写struts.properties!)
struts.properties常用配置_职场# struts.custom.properties
=application,org/apache/struts2/extension/custom
struts.properties常用配置_职场
struts.properties常用配置_职场### 指定请求url与action映射器,默认为org.apache.struts2.dispatcher.mapper.DefaultActionMapper
struts.properties常用配置_职场#struts.mapper.class
=org.apache.struts2.dispatcher.mapper.DefaultActionMapper
struts.properties常用配置_职场
struts.properties常用配置_职场### 指定action的后缀,默认为action
struts.properties常用配置_职场struts.action.extension
=action
struts.properties常用配置_职场
struts.properties常用配置_职场### 被 FilterDispatcher使用
struts.properties常用配置_职场### 如果为 true 则通过jar文件提供静态内容服务. 
struts.properties常用配置_职场### 如果为 false 则静态内容必须位于 <context_path>/struts
struts.properties常用配置_职场struts.serve.static
=true
struts.properties常用配置_职场
struts.properties常用配置_职场### 被 FilterDispatcher使用
struts.properties常用配置_职场### 指定浏览器是否缓存静态内容,测试阶段设置为false,发布阶段设置为true.
struts.properties常用配置_职场struts.serve.static.browserCache
=true
struts.properties常用配置_职场
struts.properties常用配置_职场### 设置是否支持动态方法调用,true为支持,false不支持.
struts.properties常用配置_职场struts.enable.DynamicMethodInvocation 
= true
struts.properties常用配置_职场
struts.properties常用配置_职场### 设置是否可以在action中使用斜线,默认为false不可以,想使用需设置为true.
struts.properties常用配置_职场struts.enable.SlashesInActionNames 
= false
struts.properties常用配置_职场
struts.properties常用配置_职场### 是否允许使用表达式语法,默认为true.
struts.properties常用配置_职场struts.tag.altSyntax
=true
struts.properties常用配置_职场
struts.properties常用配置_职场
struts.properties常用配置_职场### 设置当struts.xml文件改动时,是否重新加载.
struts.properties常用配置_职场### - struts.configuration.xml.reload 
= true
struts.properties常用配置_职场### 设置struts是否为开发模式,默认为false
,测试阶段一般设为true.
struts.properties常用配置_职场struts.devMode 
= false
struts.properties常用配置_职场
struts.properties常用配置_职场### 设置是否每次请求,都重新加载资源文件,默认值为false.
struts.properties常用配置_职场struts.i18n.reload
=false
struts.properties常用配置_职场
struts.properties常用配置_职场###标准的UI主题
struts.properties常用配置_职场### 默认的UI主题为xhtml
,可以为simple,xhtml或ajax
struts.properties常用配置_职场struts.ui.theme
=xhtml
struts.properties常用配置_职场###模板目录
struts.properties常用配置_职场struts.ui.templateDir
=template
struts.properties常用配置_职场#设置模板类型. 可以为 ftl
, vm, or jsp
struts.properties常用配置_职场struts.ui.templateSuffix
=ftl
struts.properties常用配置_职场
struts.properties常用配置_职场###定位velocity.properties 文件.  默认 velocity.properties
struts.properties常用配置_职场struts.velocity.configfile 
= velocity.properties
struts.properties常用配置_职场
struts.properties常用配置_职场### 设置velocity的context.
struts.properties常用配置_职场struts.velocity.contexts 
=
struts.properties常用配置_职场
struts.properties常用配置_职场### 定位toolbox.
struts.properties常用配置_职场struts.velocity.toolboxlocation
=
struts.properties常用配置_职场
struts.properties常用配置_职场### 指定web应用的端口.
struts.properties常用配置_职场struts.url.http.port 
= 80
struts.properties常用配置_职场### 指定加密端口
struts.properties常用配置_职场struts.url.https.port 
= 443
struts.properties常用配置_职场### 设置生成url时,是否包含参数.值可以为: none
, get or all
struts.properties常用配置_职场struts.url.includeParams 
= get
struts.properties常用配置_职场
struts.properties常用配置_职场### 设置要加载的国际化资源文件,以逗号分隔.
struts.properties常用配置_职场# struts.custom.i18n.resources
=testmessages,testmessages2
struts.properties常用配置_职场
struts.properties常用配置_职场### 对于一些web应用服务器不能处理HttpServletRequest.getParameterMap()
struts.properties常用配置_职场### 像 WebLogic
, Orion, and OC4J等,须设置成true,默认为false.
struts.properties常用配置_职场struts.dispatcher.parametersWorkaround 
= false
struts.properties常用配置_职场
struts.properties常用配置_职场### 指定freemarker管理器
struts.properties常用配置_职场#struts.freemarker.manager.classname
=org.apache.struts2.views.freemarker.FreemarkerManager
struts.properties常用配置_职场
struts.properties常用配置_职场### 设置是否对freemarker的模板设置缓存
struts.properties常用配置_职场### 效果相当于把template拷贝到 WEB_APP/templates.
struts.properties常用配置_职场struts.freemarker.templatesCache
=false
struts.properties常用配置_职场
struts.properties常用配置_职场### 通常不需要修改此属性.
struts.properties常用配置_职场struts.freemarker.wrapper.altMap
=true
struts.properties常用配置_职场
struts.properties常用配置_职场### 指定xslt result是否使用样式表缓存.开发阶段设为true
,发布阶段设为false.
struts.properties常用配置_职场struts.xslt.nocache
=false
struts.properties常用配置_职场
struts.properties常用配置_职场### 设置struts自动加载的文件列表.
struts.properties常用配置_职场struts.configuration.files
=struts-default.xml,struts-plugin.xml,struts.xml
struts.properties常用配置_职场
struts.properties常用配置_职场### 设定是否一直在最后一个slash之前的任何位置选定namespace.
struts.properties常用配置_职场struts.mapper.alwaysSelectFullNamespace
=false