复习struts2之指定处理的请求后缀

来源:互联网 发布:物理其实很简单. 淘宝 编辑:程序博客网 时间:2024/04/29 18:53
之前在访问action时都是默认使用.action后缀访问Action。其实默认后缀是可以通过常量”struts.action.extension“进行修改的例如:在struts.xml文件中可以进行如下配置: <constant name="struts.action.extension" value="do "/>这样配置之后,在访问时就不能将路径写为:http://localhost:8080/struts2/test/helloword这种形式的了。而要写成http://localhost:8080/struts2/test/helloword.do这种形式的了如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开。如: <constant name="struts.action.extension" value="do,action"/>这个常量除了可以在struts.xml文件中配置以外,还可以在struts.properties中配置:struts.action.extension=do 不过建议在struts.xml文件中配置除了上述变量中,还有很多的常量,而常量又可以在多个配置文件中进行定义,所有了解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"/> 

原创粉丝点击