webwork.properties配置說明
webwork.proerties裡面的全部配置專案都在com.opensymphony.webwork.WebWorkConstants這個類裡面定義:
package com.opensymphony.webwork;
/**
* This class provides a central location for framework constants.
*
* @author Onyeje Bose (digi9ten@yahoo.com)
*/
public final class WebWorkConstants {
public static final String WEBWORK_DEVMODE = "webwork.devMode";
public static final String WEBWORK_I18N_RELOAD = "webwork.i18n.reload";
public static final String WEBWORK_I18N_ENCODING = "webwork.i18n.encoding";
public static final String WEBWORK_CONFIGURATION_XML_RELOAD = "webwork.configuration.xml.reload";
public static final String WEBWORK_ACTION_EXTENSION = "webwork.action.extension";
public static final String WEBWORK_TAG_ALTSYNTAX = "webwork.tag.altSyntax";
public static final String WEBWORK_URL_HTTP_PORT = "webwork.url.http.port";
public static final String WEBWORK_URL_HTTPS_PORT = "webwork.url.https.port";
public static final String WEBWORK_OBJECTFACTORY = "webwork.objectFactory";
public static final String WEBWORK_CONTINUATIONS_PACKAGE = "webwork.continuations.package";
public static final String WEBWORK_CONFIGURATION = "webwork.configuration";
public static final String WEBWORK_LOCALE = "webwork.locale";
public static final String WEBWORK_DISPATCHER_PARAMETERSWORKAROUND = "webwork.dispatcher.parametersWorkaround";
public static final String WEBWORK_FREEMARKER_MANAGER_CLASSNAME = "webwork.freemarker.manager.classname";
public static final String WEBWORK_VELOCITY_MANAGER_CLASSNAME = "webwork.velocity.manager.classname";
public static final String WEBWORK_VELOCITY_CONFIGFILE = "webwork.velocity.configfile";
public static final String WEBWORK_VELOCITY_TOOLBOXLOCATION = "webwork.velocity.toolboxlocation";
public static final String WEBWORK_VELOCITY_CONTEXTS = "webwork.velocity.contexts";
public static final String WEBWORK_UI_TEMPLATEDIR = "webwork.ui.templateDir";
public static final String WEBWORK_UI_THEME = "webwork.ui.theme";
public static final String WEBWORK_MULTIPART_MAXSIZE = "webwork.multipart.maxSize";
public static final String WEBWORK_MULTIPART_SAVEDIR = "webwork.multipart.saveDir";
public static final String WEBWORK_MULTIPART_PARSER = "webwork.multipart.parser";
public static final String WEBWORK_OBJECTFACTORY_SPRING_AUTOWIRE = "webwork.objectFactory.spring.autoWire";
public static final String WEBWORK_XSLT_NOCACHE = "webwork.xslt.nocache";
public static final String WEBWORK_CUSTOM_PROPERTIES = "webwork.custom.properties";
public static final String WEBWORK_CUSTOM_I18N_RESOURCES = "webwork.custom.i18n.resources";
public static final String WEBWORK_MAPPER_CLASS = "webwork.mapper.class";
}
### Webwork default properties
###(can be overridden by a webwork.properties file in the root of the classpath)
###
### Specifies the Configuration used to configure webwork
### one could extend com.opensymphony.webwork.config.Configuration
### to build one's customize way of getting the configurations parameters into webwork
# webwork.configuration=com.opensymphony.webwork.config.DefaultConfiguration
### This can be used to set your default locale and encoding scheme
# webwork.locale=en_US
webwork.i18n.encoding=UTF-8
### if specified, the default object factory can be overridden here
### Note: short-hand notation is supported in some cases, such as "spring"
### Alternatively, you can provide a com.opensymphony.xwork.ObjectFactory subclass name here
# webwork.objectFactory = spring
### specifies the autoWiring logic when using the SpringObjectFactory.
### valid values are: name, type, auto, and constructor (name is the default)
webwork.objectFactory.spring.autoWire = name
### Parser to handle HTTP POST requests, encoded using the MIME-type multipart/form-data
# webwork.multipart.parser=cos
# webwork.multipart.parser=pell
webwork.multipart.parser=jakarta
# uses javax.servlet.context.tempdir by default
webwork.multipart.saveDir=
webwork.multipart.maxSize=2097152
### Load custom property files (does not override webwork.properties!)
# webwork.custom.properties=application,com/webwork/extension/custom
### How request URLs are mapped to and from actions
webwork.mapper.class=com.opensymphony.webwork.dispatcher.mapper.DefaultActionMapper
### Used by the DefaultActionMapper
webwork.action.extension=action
### use alternative syntax that requires %{} in most places
### to evaluate expressions for String attributes for tags
webwork.tag.altSyntax=true
### when set to true, WebWork will act much more friendly for developers. This
### includes:
### - webwork.i18n.reload = true
### - webwork.configuration.xml.reload = true
### - raising various debug or ignorable problems to errors
### For example: normally a request to foo.action?someUnknownField=true should
### be ignored (given that any value can come from the web and it
### should not be trusted). However, during development, it may be
### useful to know when these errors are happening and be told of
### them right away.
webwork.devMode = false
### when set to true, resource bundles will be reloaded on _every_ request.
### this is good during development, but should never be used in production
webwork.i18n.reload=false
### Standard UI theme
### Change this to reflect which path should be used for JSP control tag templates by default
webwork.ui.theme=xhtml
webwork.ui.templateDir=template
#sets the default template type. Either ftl, vm, or jsp
webwork.ui.templateSuffix=ftl
### Configuration reloading
### This will cause the configuration to reload xwork.xml when it is changed
webwork.configuration.xml.reload=false
### Location of velocity.properties file. defaults to velocity.properties
# webwork.velocity.configfile = velocity.properties
### Comma separated list of VelocityContext classnames to chain to the WebWorkVelocityContext
# webwork.velocity.contexts =
### used to build URLs, such as the UrlTag
webwork.url.http.port = 80
webwork.url.https.port = 443
### Load custom default resource bundles
# webwork.custom.i18n.resources=testmessages,testmessages2
### workaround for some app servers that don't handle HttpServletRequest.getParameterMap()
### often used for WebLogic, Orion, and OC4J
webwork.dispatcher.parametersWorkaround = false
### configure the Freemarker Manager class to be used
### Allows user to plug-in customised Freemarker Manager if necessary
### MUST extends off com.opensymphony.webwork.views.freemarker.FreemarkerManager
#webwork.freemarker.manager.classname=com.opensymphony.webwork.views.freemarker.FreemarkerManager
### See the WebWorkBeanWrapper javadocs for more information
webwork.freemarker.wrapper.altMap=true
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/750220/viewspace-905934/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Kafka配置說明Kafka
- FTP配置說明FTP
- rust配置說明Rust
- Spring配置說明Spring
- pureftpd安裝配置簡明說明 (轉)FTP
- elasticsearch.yml 配置說明Elasticsearch
- Elasticsearch 引數配置說明Elasticsearch
- goldengate ddl 配置說明Go
- kafka 引數配置說明Kafka
- 交換機配置命令說明
- kettle MongoDB Output 配置說明MongoDB
- 雷池 docker env 配置說明Docker
- Redis應用配置項說明Redis
- Nginx的配置檔案說明Nginx
- Docker 的配置檔案說明Docker
- Nginx負載均衡配置說明Nginx負載
- Apache 配置檔案說明(轉)Apache
- Nginx的gzip配置引數說明Nginx
- nginx 詳解 – 詳細配置說明Nginx
- nginx 詳解 - 詳細配置說明Nginx
- VNC安裝配置詳細說明VNC
- 【轉載】UEditor前端配置項說明前端
- Nginx配置檔案詳細說明Nginx
- Spring配置項解釋說明Spring
- 【MySQL】SemisynchronousReplication配置和引數說明MySql
- saltstack/saltmaster配置檔案說明(二)AST
- Redis配置檔案引數說明Redis
- 關於NTP SERVER的配置說明Server
- Revit Server的注意要配置說明Server
- keycloak~token配置相關說明
- vue-cli@3.0 使用及配置說明Vue
- php.ini 核心配置選項說明PHP
- 【NETWORK】Oracle RAC 心跳地址配置說明Oracle
- nginx.conf的完整配置說明Nginx
- linux limits.conf配置說明LinuxMIT
- Windows 訪問CentOS上Mysq配置說明WindowsCentOS
- 【MySQL】Semisynchronous Replication 配置和引數說明MySql
- DBCP連線池配置引數說明