struts2学习(7)——常量的配置

在struts中有很多常量可以配置,这些常量可以配置在struts.xml文件中叶可以配置在struts.properties中配置。

struts.xml中配置常量 <constant name="struts.action.extensiion" value="do"></constant> 这个常量是将struts的默认的   .action  改成  .do后缀名。

struts.properties中的配置如下:

struts.action.extension=do


此外因为常量可以在下面多个配置文件中进行定义,所以我们需要了解struts2加载常量的搜索顺序:

struts-default.xml

struts-plugin.xml

struts.xml

struts.properties

web.xml

如果在多个文件中配置了同一个常量,则后一个文件中配置的常量值会覆盖前面文件中配置的常量值。


常用常量介绍:

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

指定默认编码集,作用于HttpServletRequest的setCharacterEncoding方法和freemarker、velocity的输出

 

·<constant name="struts.action.extension" value="do" /> 改变action的后缀

 

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

当struts的配置文件修改后,系统是否自动重新加载该文件,默认为false,开发阶段最好打开,这样不用重启服务器。

 

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

开发模式下使用,这样可以答应出更详细的错误信息

 

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

上传文件的大小限制,value值表示总大小,不是单个文件。

 

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

默认的视图主题

 

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

设置浏览器是否缓存静态内容,默认为true,开发阶段最好关闭

 

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

与spring集成时,指定由spring负责action对象的创建

 

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

该属性设置struts2师傅支持动态方法调用,该属性的默认值是true。如需关闭,则设置value="false"。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章