struts2中method={1}详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts2中method={1}详解相关的知识,希望对你有一定的参考价值。

我们在使用struts2的时候,有时候为了简化struts2的配置项而采用通配符的方式,如下代码:

<action name="ajaxregister!*" class="com.china.web.action.RegisterAction" method="{1}">  
    <result name="success" type="json">  
        <param name="includeProperties">resMap.*</param>  
    </result>  
</action>  

此时method={1}中的{1}代表ajaxregister!*中的*,即加入你访问路径是ajaxregister!save.action,则此刻访问的是该Action中的save方法。同理,如果通配符* == delete,则就访问的是delete方法。

当name中含有多个通配符的时候,例如

<action name="*register!*" class="com.china.web.action.RegisterAction" method="{2}">

  

method={2} ,就代表第二个通配符,同理以此类推。

这种方式更灵活的简化了struts.xml的配置文件。

method=几就是代表第几个通配符

以上是关于struts2中method={1}详解的主要内容,如果未能解决你的问题,请参考以下文章

struts2配置文件中的method={1}详解

Struts2一个Action内包含多个请求处理方法的处理,method的使用方法,struts2中

Struts2学习笔记二 配置详解

struts2基本配置详解2

求下面struts2漏洞攻击代码详解!!

Struts2中 Result类型配置详解