1. 程式人生 > >struts2的properties檔案中,各個屬性的解釋

struts2的properties檔案中,各個屬性的解釋

轉自http://blog.knowsky.com/183632.htm

指定載入struts2配置檔案管理器,預設為org.apache.struts2.conig.DefaultConfiguration開發者可以自定義配置檔案管理器,該類要實現Configuration介面,可以自動載入struts2配置檔案。

指定載入struts2配置檔案管理器預設為

org.apache.struts2.config.DefaultConfiguration

開發者可以自定義配置檔案管理器,該類要實現Configuration介面,可以自動載入struts2配置檔案

struts.configuration=org.apache.struts2.config.DefaultConfiguration

#設定預設的locale和字元編碼

struts.locale=en_US

struts.i18n.encoding=UTF_8

#指定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.ojectTypeDeterminer = notiger

#改屬性指定處理MIME-type multipart/form-data檔案上傳

struts.multipart.parser = cos

struts.multipart.parser = pell

struts.multipart.parser = jakarta

#指定上傳檔案時的臨時目錄,預設使用javax.servlet.context.tempdir

struts.multipart.saveDir=

struts.multipart.maxSize=2097152

#載入自定義屬性檔案(不要寫struts.properties)

struts.customer.properties=appication,org/apache/struts2/extension/custom

#指定請求url與action對映器預設為org.apache.struts2.dispatcher.mapper.DefaultActionMapper

struts.mapper.class=org.apache.struts2.dispatcher.mapper.DefaultActionMapper

#指定action的字尾,預設為action

struts.action.extension = action

#被FilterDispatcher使用,如果為true則通過jar檔案提供靜態內容服務,如果為false則靜態內容必須位於/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檔案改動時,是否重新載入.

 struts.configuration.xml.reload = true

#設定struts是否為開發模式,預設為false,測試階段一般設為true.

struts.devMode= false

#設定是否每次請求,都重新載入資原始檔,預設值為false.

struts.i18n.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

struts.velocity.configfile = velocity.properties

# 設定velocity的context.

struts.velocity.contexts =

# 定位toolbox.

struts.velocity.toolboxlocation=

# 指定web應用的埠.

struts.url.http.port = 80

# 指定加密埠

struts.url.https.port = 443

# 設定生成url時,是否包含引數.值可以為: none, get or all

struts.url.includeParams = get

# 設定要載入的國際化資原始檔,以逗號分隔.

struts.custom.i18n.resources=testmessages,testmessages2

# 對於一些web應用伺服器不能處理HttpServletRequest.getParameterMap(),像 WebLogic, Orion, and OC4J等,須設定成true,預設為false.

struts.dispatcher.parametersWorkaround = false

# 指定freemarker管理器

struts.freemarker.manager.classname=org.apache.struts<