struts2的动态方法调用(DMI)和通配符映射

动态方法调用

1、Struts2默认关闭DMI功能,需要使用需要手动打开,配置常量

[html] view plain copy

  1. struts.enable.DynamicMethodInvocation = true

2、使用“!”方法,即action名称!方法名称。

struts.xml

[html] view plain copy

  1. <action name="query" class="action.QueryAction">
  2. <result name="success">/success.jsp</result>
  3. <result name="update">/update.jsp</result>
  4. </action>

请求URL为/query!success.action,调用actio.QueryAction的success()方法;

请求URL为/query!update,调用actio.query的update()方法;

路径上的.action可以写也可以不写,Struts2默认添加.action为后缀,如果更改了后缀名,例如.do,就要显示声明。

3、好处:减少action数量,但是结果集数量不变。

通配符映射

1、不必配置

[html] view plain copy

  1. struts.enable.DynamicMethodInvocation = true

2、写法

struts.xml

[html] view plain copy

  1. <action name="*_*" class="action.{1}Action" method="{2}">
  2. <result>{1}_{2}Succ.jsp</result>
  3. </action>

请求URL为/Query_success,调用actio.QueryAction的success()方法;

{1}、{2}表示通配符的位置,这里{1}表示Query,{2}表示success;

另{0}表示整个通配符,这里表示Query_success,所以上面的结果集也可以写成{0}Succ.jsp

3、好处:减少action数量的同时,减少结果集的数量,体现“约定优于配置”,在增加代码的同时,并不需要对struts.xml文件进行更改;

4、URL请求顺序:当有多个action被匹配成功,例如XAction、*Action、*,对于请求XAction,则匹配XAction,忽视XAction的出现顺序,对于请求YAction,则由*Action、*在struts.xml的出现顺序决定,先出现的先调用

5、匹配带有“/”的路径:

(1)配置常量struts.enable.SlashesInActionNames = true

(2)有些书写用**匹配带“/”的路径,但是本人实验结果不需要**,直接*/*即可

来自于:http://blog.csdn.net/abc45628/article/details/45482649

时间: 2025-01-20 04:06:41

struts2的动态方法调用(DMI)和通配符映射的相关文章

Struts2.5动态方法调用action和使用通配符访问action

[原帖地址]http://blog.csdn.net/leafage_m/article/details/54577687 动态方法调用Action. 这种方法,需要在struts.xml中对其进行支持: [html] view plain copy print? <!-- 是否开启动态方法调用 --> <constant name="struts.enable.DynamicMethodInvocation" value="true" />

struts2.5动态方法调用和默认Action

在动态方法调用中,使用通配符方法出现问题,参考了http://www.cnblogs.com/jasonlixuetao/p/5933671.html 这篇博客,问题解决了. 这个是helloworld.xml: 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE struts PUBLIC 3 "-//Apache Software Foundation//DTD Struts Co

Struts2之动态方法调用(优点:调用同一个action中的多个方法不需要在配置文件中写多个指向相同action类的的action节点只需要一个action节点就行)

在表单action值里指定所调用的action中的哪个方法而不是借助配置文件action节点的method属性 1 UserAction类 package org.action; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import org.apache.struts2.ServletActionContext;

Struts2中动态方法调用

1 . 查看默认配置,是否为:true 2.如果为false 可以通过struts.xml进行相关的配置:

Struts2动态方法调用(DMI)

在Struts2中动态方法调用有三种方式,动态方法调用就是为了解决一个Action对应多个请求的处理,以免Action太多 第一种方式:指定method属性这种方式我们前面已经用到过,类似下面的配置就可以实现 <action name="chainAction" class="chapter2.action.Chapter2Action" method="chainAction"> <result name="chai

动态方法调用和通配符

一.动态方法调用 Action执行的时候并不一定要执行execute方法,也可以在配置文件中配置Action的时候用method="name"来指定执行哪个方法: Login.jsp <form action="log.action"> <font color="red">${loginError }</font> <table align="center"> <tr>

动态方法调用

1.先建立一个项目 2.在此项目中需要建立两个jsp 1)在第一个jsp中写入一句话 <body> User Add Success! </body> 2)在第二个jsp中写入链接 <body> Action执行的时候并不一定要执行execute方法<br /> 可以在配置文件中配置Action的时候用method=来指定执行哪个方法 也可以在url地址中动态指定(动态方法调用DMI)(推荐)<br /> <a href="<

ActionMethod_DMI_动态方法调用

Action执行的时候并不一定要执行execute方法可以在配置文件中配置Action的时候用method=来指定执行那个方法,也可以在url地址中动态指定(动态方法调用DMI)(推荐) 动态方法调用的配置要先打开: 1 <constant name="struts.enable.DynamicMethodInvocation" value="true"/> index.jsp 1 <%@ page language="java"

struts2中通配符和DMI(动态方法调用)

在struts2中不建议使用Dynamic Method Invocation,具体原因见官方文档: http://struts.apache.org/docs/action-configuration.html#ActionConfiguration-WildcardMethod; 刚刚接触这块,所以两种方法各自实现一下: 1)动态方法调用: struts.xml文件: <package name="default" namespace="/yin" ext