免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1679 | 回复: 0
打印 上一主题 下一主题

webwork.properties的全部配置 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-08-18 17:29 |只看该作者 |倒序浏览

webwork.properties里面的全部配置项目都在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


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/20678/showart_1133361.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP