### 指定加載struts
配置文件管理器
默認為ornfig
DefaultConfiguration
### 開發者可以自定義配置文件管理器
該類要實現Configuration接口
可以自動加載struts
配置文件
# nfiguration=ornfig
DefaultConfiguration
### 設置默認的locale和字符編碼
# struts
locale=en_US
struts
i
n
encoding=UTF
### 指定struts的工廠類
# struts
objectFactory = spring
### 指定spring框架的裝配模式
### 裝配方式有: name
type
auto
and constructor (name 是默認裝配模式)
struts
objectFactory
spring
autoWire = name
### 該屬性指定整合spring時
是否對bean進行緩存
值為true or false
默認為true
struts
objectFactory
spring
useClassCache = true
### 指定類型檢查
#struts
objectTypeDeterminer = tiger
#struts
objectTypeDeterminer = notiger
### 該屬性指定處理 MIME
type multipart/form
data
文件上傳
# struts
multipart
parser=cos
# struts
multipart
parser=pell
struts
multipart
parser=jakarta
# 指定上傳文件時的臨時目錄
默認使用 ntext
tempdir
struts
multipart
saveDir=
struts
multipart
maxSize=
### 加載自定義屬性文件 (不要改寫struts
properties!)
# struts
custom
properties=application
org/apache/struts
/extension/custom
### 指定請求url與action映射器
默認為org
apache
struts
dispatcher
mapper
DefaultActionMapper
#struts
mapper
class=org
apache
struts
dispatcher
mapper
DefaultActionMapper
### 指定action的後綴
默認為action
struts
action
extension=action
### 被 FilterDispatcher使用
### 如果為 true 則通過jar文件提供靜態內容服務
### 如果為 false 則靜態內容必須位於 <context_path>/struts
struts
serve
static=true
### 被 FilterDispatcher使用
### 指定浏覽器是否緩存靜態內容
測試階段設置為false
發布階段設置為true
struts
serve
static
browserCache=true
### 設置是否支持動態方法調用
true為支持
false不支持
struts
enable
DynamicMethodInvocation = true
### 設置是否可以在action中使用斜線
默認為false不可以
想使用需設置為true
struts
enable
SlashesInActionNames = false
### 是否允許使用表達式語法
默認為true
struts
tag
altSyntax=true
### 設置當struts
xml文件改動時
是否重新加載
###
nfiguration
xml
reload = true
### 設置struts是否為開發模式
默認為false
測試階段一般設為true
struts
devMode = false
### 設置是否每次請求
都重新加載資源文件
默認值為false
struts
i
n
reload=false
###標准的UI主題
### 默認的UI主題為xhtml
可以為simple
xhtml或ajax
struts
ui
theme=xhtml
###模板目錄
struts
ui
templateDir=template
#設置模板類型
可以為 ftl
vm
or jsp
struts
ui
templateSuffix=ftl
###定位velocity
properties 文件
默認 velocity
properties
nfigfile = velocity
properties
### 設置velocity的context
ntexts =
### 定位toolbox
struts
velocity
toolboxlocation=
### 指定web應用的端口
struts
url
http
port =
### 指定加密端口
struts
url
;=
### 設置生成url時
是否包含參數
值可以為: none
get or all
struts
url
includeParams = get
### 設置要加載的國際化資源文件
以逗號分隔
# struts
custom
i
n
resources=testmessages
testmessages
### 對於一些web應用服務器不能處理HttpServletRequest
getParameterMap()
### 像 WebLogic
Orion
and OC
J等
須設置成true
默認為false
struts
dispatcher
parametersWorkaround = false
### 指定freemarker管理器
#struts
freemarker
manager
classname=org
apache
struts
views
freemarker
FreemarkerManager
### 設置是否對freemarker的模板設置緩存
### 效果相當於把template拷貝到 WEB_APP/templates
struts
freemarker
templatesCache=false
### 通常不需要修改此屬性
struts
freemarker
wrapper
altMap=true
### 指定xslt result是否使用樣式表緩存
開發階段設為true
發布階段設為false
struts
xslt
nocache=false
### 設置struts自動加載的文件列表
nfiguration
files=struts
default
xml
struts
plugin
xml
struts
xml
### 設定是否一直在最後一個slash之前的任何位置選定namespace
struts
mapper
alwaysSelectFullNamespace=false
From:http://tw.wingwit.com/Article/program/Java/ky/201311/28576.html