webwork.properties
上传用户:itkeji
上传日期:2017-12-04
资源大小:6184k
文件大小:6k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. ### START SNIPPET: complete_file
  2. ### Webwork default properties
  3. ###(can be overridden by a webwork.properties file in the root of the classpath)
  4. ###
  5. ### Specifies the Configuration used to configure webwork
  6. ### one could extend com.opensymphony.webwork.config.Configuration
  7. ### to build one's customize way of getting the configurations parameters into webwork
  8. # webwork.configuration=com.opensymphony.webwork.config.DefaultConfiguration
  9. ### This can be used to set your default locale and encoding scheme
  10. webwork.locale=zh_CN
  11. webwork.i18n.encoding=UTF-8
  12. ### if specified, the default object factory can be overridden here
  13. ### Note: short-hand notation is supported in some cases, such as "spring"
  14. ###       Alternatively, you can provide a com.opensymphony.xwork.ObjectFactory subclass name here  
  15. # webwork.objectFactory = spring
  16. ### specifies the autoWiring logic when using the SpringObjectFactory.
  17. ### valid values are: name, type, auto, and constructor (name is the default)
  18. webwork.objectFactory.spring.autoWire = name
  19. ### indicates to the webwork-spring integration if Class instances should be cached
  20. ### this should, until a future Spring release makes it possible, be left as true
  21. ### unless you know exactly what you are doing!
  22. ### valid values are: true, false (true is the default)
  23. webwork.objectFactory.spring.useClassCache = true
  24. ### if specified, the default object type determiner can be overridden here
  25. ### Note: short-hand notation is supported in some cases, such as "tiger" or "notiger"
  26. ###       Alternatively, you can provide a com.opensymphony.xwork.util.ObjectTypeDeterminer implementation name here
  27. ### Note: if you have the xwork-tiger.jar within your classpath, GenericsObjectTypeDeterminer is used by default
  28. ###       To disable tiger support use the "notiger" property value here.
  29. #webwork.objectTypeDeterminer = tiger
  30. #webwork.objectTypeDeterminer = notiger
  31. ### Parser to handle HTTP POST requests, encoded using the MIME-type multipart/form-data
  32. # webwork.multipart.parser=cos
  33. # webwork.multipart.parser=pell
  34. webwork.multipart.parser=jakarta
  35. # uses javax.servlet.context.tempdir by default
  36. webwork.multipart.saveDir=
  37. webwork.multipart.maxSize=2097152
  38. ### Load custom property files (does not override webwork.properties!)
  39. # webwork.custom.properties=application,com/webwork/extension/custom
  40. ### How request URLs are mapped to and from actions
  41. webwork.mapper.class=com.opensymphony.webwork.dispatcher.mapper.DefaultActionMapper
  42. ### Used by the DefaultActionMapper
  43. ### You may provide a comma separated list, e.g. webwork.action.extension=action,jnlp,do
  44. webwork.action.extension=action
  45. ### Used by FilterDispatcher
  46. ### If true than WW serves static content from inside its jar. 
  47. ### If false than the static content must be available at <context_path>/webwork
  48. webwork.serve.static=true
  49. ### use alternative syntax that requires %{} in most places
  50. ### to evaluate expressions for String attributes for tags
  51. webwork.tag.altSyntax=true
  52. ### when set to true, WebWork will act much more friendly for developers. This
  53. ### includes:
  54. ### - webwork.i18n.reload = true
  55. ### - webwork.configuration.xml.reload = true
  56. ### - raising various debug or ignorable problems to errors
  57. ###   For example: normally a request to foo.action?someUnknownField=true should
  58. ###                be ignored (given that any value can come from the web and it
  59. ###                should not be trusted). However, during development, it may be
  60. ###                useful to know when these errors are happening and be told of
  61. ###                them right away.
  62. webwork.devMode = false
  63. ### when set to true, resource bundles will be reloaded on _every_ request.
  64. ### this is good during development, but should never be used in production
  65. webwork.i18n.reload=true
  66. ### Standard UI theme
  67. ### Change this to reflect which path should be used for JSP control tag templates by default
  68. webwork.ui.theme=xhtml
  69. webwork.ui.templateDir=template
  70. #sets the default template type. Either ftl, vm, or jsp
  71. webwork.ui.templateSuffix=ftl
  72. ### Configuration reloading
  73. ### This will cause the configuration to reload xwork.xml when it is changed
  74. webwork.configuration.xml.reload=true
  75. ### Location of velocity.properties file.  defaults to velocity.properties
  76. # webwork.velocity.configfile = velocity.properties
  77. ### Comma separated list of VelocityContext classnames to chain to the WebWorkVelocityContext
  78. # webwork.velocity.contexts =
  79. ### used to build URLs, such as the UrlTag
  80. webwork.url.http.port = 80
  81. webwork.url.https.port = 443
  82. ### possible values are: none, get or all
  83. webwork.url.includeParams = get
  84. ### Load custom default resource bundles
  85. ### workaround for some app servers that don't handle HttpServletRequest.getParameterMap()
  86. ### often used for WebLogic, Orion, and OC4J
  87. webwork.dispatcher.parametersWorkaround = false
  88. ### configure the Freemarker Manager class to be used
  89. ### Allows user to plug-in customised Freemarker Manager if necessary
  90. ### MUST extends off com.opensymphony.webwork.views.freemarker.FreemarkerManager
  91. #webwork.freemarker.manager.classname=com.opensymphony.webwork.views.freemarker.FreemarkerManager
  92. ### See the WebWorkBeanWrapper javadocs for more information
  93. webwork.freemarker.wrapper.altMap=true
  94. ### configure the XSLTResult class to use stylesheet caching.
  95. ### Set to true for developers and false for production.
  96. webwork.xslt.nocache=false
  97. ### insert Freemarker's Sitemesh applydecorator transform to be put
  98. ### into freemarker's model allowing sitemesh's applydecorator tag to 
  99. ### be used in freemarker's page eg.
  100. ### <@sitemesh.applydecorator name="someDecorator" page="/pages/somePage.ftl" />
  101. #
  102. webwork.freemarker.sitemesh.applyDecoratorTransform=true
  103. ### Location of velocity.properties file.  defaults to velocity.properties
  104. #webwork.velocity.configfile = velocity.properties
  105. ### Comma separated list of VelocityContext classnames to chain to the WebWorkVelocityContext
  106. #webwork.velocity.contexts =
  107. ### Override the default VelocityManager with a custom implementation
  108. #webwork.velocity.manager.classname=path.and.classname
  109. ### Load custom default resource bundles
  110. #webwork.custom.i18n.resources=webwork/resource/webwork-message,webwork/resource/app-message