一、常量可以在struts.xml或struts.properties中配置,建议在struts.xml中配置,两种配置方式如下:
(1)在struts.xml文件中配置常量

<struts>

<constant name="struts.action.extension" value="do"/>

</struts>

(2)在struts.properties中配置常量

struts.action.extension=do

二、struts2加载常量的搜索顺序::

struts-default.xml
struts-plugin.xml
struts.xml
struts.properties
web.xml
三、常用的常量介绍
  <!-- 指定默认编码集,作用于HttpServletRequest的setCharacterEncoding方法 和freemarker 、velocity的输出 -->

<constant name="struts.i18n.encoding" value="UTF-8"/>

  <!-- 该属性指定需要Struts 2处理的请求后缀,该属性的默认值是action,即所有匹配*.action的请求都由Struts2处理。如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开。 -->

<constant name="struts.action.extension" value="do"/>

<!-- 设置浏览器是否缓存静态内容,默认值为true(生产环境下使用),开发阶段最好关闭 -->

<constant name="struts.serve.static.browserCache" value="false"/>

<!-- 当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false(生产环境下使用),开发阶段最好打开 -->

<constant name="struts.configuration.xml.reload" value="true"/>

¨<!-- 开发模式下使用,这样可以打印出更详细的错误信息 -->

<constant name="struts.devMode" value="true" />

¨<!-- 默认的视图主题 -->

<constant name="struts.ui.theme" value="simple" />

¨<!– 与spring集成时,指定由spring负责action对象的创建 -->

<constant name="struts.objectFactory" value="spring" />

¨<!–该属性设置Struts 2是否支持动态方法调用,该属性的默认值是true。如果需要关闭动态方法调用,则可设置该属性为false。 -->

<constant name="struts.enable.DynamicMethodInvocation" value="false"/>

¨<!--上传文件的大小限制-->

<constant name="struts.multipart.maxSize" value=“10701096"/>

最新文章

  1. GJM : Unity3D HIAR -【 快速入门 】 八、开发云识别应用
  2. C++面试中string类的一种正确简明的写法
  3. 15天玩转redis —— 第八篇 你不得不会的事务玩法
  4. 【转】Flume日志收集
  5. JSTL的c:forEach标签(${status.index})
  6. [转]RamDisk导致远程桌面客户端无法启动问题
  7. Boost源码剖析之:泛型指针类any
  8. Google Chrome can not be run as root
  9. nginx使用ssl模块配置HTTPS支持
  10. 【PL/SQL练习】命名块: 存储过程、函数、触发器、包
  11. Divisibility
  12. WMDestroy函数调用inherited,难道是为了调用子类覆盖函数?还有这样调用的?
  13. C#使用DirectoryEntry操作IIS创建网站和虚拟路径
  14. bzoj1675 [Usaco2005 Feb]Rigging the Bovine Election 竞选划区
  15. node文件中的package.json文件解析
  16. 树莓派安装FLASK服务;并在端网页读取 GPIO状态和系统时间
  17. 使用eclipse开发工具与hibernate开发者为开源一起做贡献
  18. PJSUA2开发文档--第十章 媒体质量(MEDIA QUALITY)
  19. javaMail实现收发邮件(四)
  20. JAVA 第七周学习总结

热门文章

  1. linux目录(转载)
  2. 【原】Ajax技术原理
  3. 在方法中new关键字的用处
  4. vs2015编译时CS1056 C# Unexpected character解决办法
  5. NFS挂载时出现&quot;access denied by server while mounting&quot;的解决方法
  6. 获取java根目录,加载根目录下的文件
  7. Eclipse3.2查找jre的问题
  8. NodeJS中resolve添加地址无效
  9. git revert后导致合并代码丢失
  10. html中的行内元素和块级元素小结