Struts2的properties配置檔案詳解
### 指定載入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
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
# 指定上傳檔案時的臨時目錄,預設使用 javax.servlet.context.tempdir
struts.multipart.saveDir=
struts.multipart.maxSize=2097152
### 載入自定義屬性檔案
# struts.custom.properties=application,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 則靜態內容必須位於 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檔案改動時,是否重新載入.
### - 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.struts2.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自動載入的檔案列表.
struts.configuration.files=struts-default.xml,struts-plugin.xml,struts.xml
### 設定是否一直在最後一個slash之前的任何位置選定namespace.
struts.mapper.alwaysSelectFullNamespace=false[@more@]
### 開發者可以自定義配置檔案治理器,該類要實現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
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
# 指定上傳檔案時的臨時目錄,預設使用 javax.servlet.context.tempdir
struts.multipart.saveDir=
struts.multipart.maxSize=2097152
### 載入自定義屬性檔案
# struts.custom.properties=application,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 則靜態內容必須位於 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檔案改動時,是否重新載入.
### - 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.struts2.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自動載入的檔案列表.
struts.configuration.files=struts-default.xml,struts-plugin.xml,struts.xml
### 設定是否一直在最後一個slash之前的任何位置選定namespace.
struts.mapper.alwaysSelectFullNamespace=false[@more@]
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/93029/viewspace-1025249/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- log4j.properties的配置詳解
- Nginx的配置檔案詳解Nginx
- vim的配置檔案詳解
- Struts2 XML配置詳解XML
- Struts2 配置檔案(八)
- 【SSM框架整合】專案xml檔案、properties等檔案的配置SSM框架XML
- log4j.properties配置詳解
- log4j.properties 配置檔案
- java中讀取.properties配置檔案Java
- redis 配置檔案詳解Redis
- haproxy配置檔案詳解
- redis配置檔案詳解Redis
- SSH配置檔案詳解
- zookeeper配置檔案詳解
- nginx配置檔案詳解Nginx
- WCF配置檔案詳解
- 解決properties、xml等配置檔案無法找到問題XML
- struts2中的6大配置檔案
- WebLogic NodeManager 配置檔案nodemanager.propertiesWeb
- Hibernate配置檔案詳解
- BIND配置檔案詳解(三)
- Spring 配置檔案詳解Spring
- vsftpd配置檔案詳解FTP
- Nagios配置檔案詳解iOS
- spring配置檔案詳解Spring
- spring配置檔案中分別使用多個properties檔案Spring
- Tomcat 的 Server 檔案配置詳解!!!TomcatServer
- resin配置檔案的詳細解釋
- linux的啟動配置檔案inittab檔案詳解Linux
- Java zip解壓,並遍歷zip中的配置檔案 .cfg或.propertiesJava
- Java讀取properties配置檔案工具包Java
- 03.MyBatis學習-----全域性配置檔案_properties_引入外部配置檔案MyBatis
- Gradle 簽名的配置檔案 gradle.propertiesGradle
- Junit、Assert、內省、Properties類與配置檔案的使用
- Nginx 配置檔案引數詳解Nginx
- 屬性配置檔案詳解(2)
- Docker Compose 配置檔案詳解Docker
- MyBatis--主配置檔案詳解MyBatis