LookupDispatchAction
========================
org.apache.struts.actions.LookupDispatchAction.java
从名字大概我们也能看出LookupDispatchAction是DispatchAction的子类。他们从功能上有许多相似
的地方。
下面还是以一个例子来简要的说明:
通常它主要应用于“在一个表单中有多个提交按钮而这些按钮又有一个共同的名字”,而这些按钮的名字要和具体的action mapping中的parameter的值对应。[这点很重要]
如下代码截取自struts-config.xml:
<action path="/editArticle"
type="com.****.EditArticleAction"
name="AtricleForm"
scope="request"
parameter="action"><!--按钮的名字此处为“action”-->
<forward name="success" path="/***.jsp"/>
</action>
下面给出一个jsp页面的表单部分
<html:form action="/editArticle"/>
<html:submit property="action">
<bean:message key="button.view"/>
</html:submit>
<html:submit property="action">
<bean:message key="button.delete"/>
</html:submit>
</html:form>
那么相应的ApplicationResources.properties中就会有如下片断:
button.view=View The Article
button.delete=Delete The Atricle
此时还并为完成,在LookupDispatchAction中有一个抽象方法:
/**
* Provides the mapping from resource key to method name
*
*@return Resource key / method name map
*/
protected abstract Map getKeyMethodMap();
这个方法你应该在EditArticleAction中实现,如下:
protected Map getKeyMethodMap(){
Map map = new HashMap();
map.put("button.view", "view");
map.put("button.delete", "delete");
return map;
}
好了,假设在你的EditArticleAction有如下方法:
public ActionForward view(ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response)
throws IOException, ServletException {
//......
//......
return mapping.findForward("success");
}
public ActionForward delete(ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response)
throws IOException, ServletException {
//......
//......
return mapping.findForward("success");
}
下面实例几个假设client端的请求:
http://....../editArticle.do此时页面有两个按钮,按钮1“View The Article”,"",按钮2“Delete The Atricle”
当提交按钮1时调用EditArticleAction里的view方法;
当提交按钮2时调用EditArticleAction里的delete方法;
以下还有一点说明;
如果我有一个按钮要出发action的AA方法,但是在该action没有AA方法,此时将抛出异常;如果该action中有两个AA方法,则会调用第一个。