06. struts2中指定struts2处理的请求后缀

概述

  • 默认情况下我们都是使用.action后缀访问Action。

  • 其实默认后缀是可以通过常量”struts.action.extension“进行修改的。

  • 我们可以配置Struts 2只处理以.do为后缀的请求路径

    •  <struts>  
           <constant name="struts.action.extension" value="do"/>  
       </struts>  
  • 如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开。如:

    •  <constant name="struts.action.extension" value="do,go"/>
  • 一些常用的常量

    •  <!-- 指定默认编码集,作用于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"/>  

常量定义位置

  • 常量可以在struts.xml或struts.properties中配置,建议在struts.xml中配置

  • 两种配置方式如下:

    • 在struts.xml文件中配置常量

    •   <struts>  
            <constant name="struts.action.extension" value="do"/>  
        </struts>  
    • 在struts.properties中配置常量

       struts.action.extension=do
  • 也可在多个配置文件中进行定义

struts2加载常量的搜索顺序

  • struts-default.xml
  • struts-plugin.xml
  • struts.xml
  • struts.properties
  • web.xml

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

蜗牛互联网

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值