有關struts中DispatchAction的用法小結

   今天剛剛看了DispatchAction以爲這個東西有點意思,因此就寫點東西,經過它的名字我想應該能夠明白它的做用了,用於分發的Action,主要的好處是把一些功能相似的Action放到一個Action中,經過傳入的不一樣參數來以爲執行哪一個操做. 
    DispatchAction類是一個抽象類,它實現了父類(Action)的execute()方法,因此它的子類就不用來實現這個方法了,只須要專一與實際操做的方法,   
     1.首先要一個DispatchAction的子類,它含有一些方法,login,logout,method1, 
package examples; 

package examples; 

import javax.servlet.http.*; 
import org.apache.struts.action.*; 
import org.apache.struts.actions.*; 
public class AccountAction extends DispatchAction { 
    public ActionForward login(ActionMapping mapping, 
                              ActionForm form, 
                              HttpServletRequest request, 
                              HttpServletResponse response) 
    throws Exception { 
        // 進行一些Login的邏輯 
              return mapping.findForward("success");   

    } 

    public ActionForward logout(ActionMapping mapping, 
                                ActionForm form, 
                                HttpServletRequest request, 
                                HttpServletResponse response) 
    throws Exception { 
        // 進行一些Logout的邏輯 
              return mapping.findForward("success1");   

    } 

    public ActionForward method1(ActionMapping mapping, 
                                ActionForm form, 
                                HttpServletRequest request, 
                                HttpServletResponse response) 
    throws Exception { 
        // 進行一些method1的邏輯 
              return mapping.findForward("success");   

    } 






      必定要注意在DispatchAction中你想執行的操做,都必需要有統一的參數 (ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response), 是一個規定. 
2.接下來是配置struts-config.xml 

    <action path="/login"  type="examples.AccountAction"   
             name="logonForm" 
             scope="request" 
             parameter="action" 
             input="/pages/dispatch1.jsp"> 
       <forward name="success" path="/pages/success.jsp" /> 
    </action> 

    <action path="/logout"  type="examples.AccountAction"   
             name="logonForm" 
             scope="request" 
             parameter="action" 
             input="/pages/dispatch1.jsp"> 
       <forward name="success1" path="/pages/success1.jsp" /> 
    </action> 

   這裏須要注意的就是parameter屬性的值,由於這個值要和頁面傳來的參數對應. 

3.再來看看JSP頁 pages/dispatch1.jsp 

<%@ taglib uri="/tags/struts-html" prefix="html" %> 
<html:link href="/DispathActionTest/login.do?action=login">login</html:link><br> 
<html:link href="/DispathActionTest/logout.do?action=logout">logout</html:link> 


    這裏要注意幾點,首先 ?後面的KEY要和struts-config.xml中的parameter相同,還有它的VALUE要是你在 action的一個方法名字,這裏方法名爲login, 那麼在程序運行時就是調用login的操做,若是是logout,那程序就調用logout的操做. 
    補充:咱們固然能夠經過定義一個相似於<html:hidden property="operAt"/>的變量,只要對該變量賦上對應DispatchAction中的方法的值來肯定咱們要調用的業務方法。然而筆者不提倡用Struts標籤來定義這樣的隱含的變量,由於Struts標籤爲動態標籤,它可能須要在FormBean中定義該屬性的get和set方法,而在parameter中定義的值不須要在FormBean當中定義get和set方法。筆者建議用html的標準標籤<input> 來定義該隱藏變量。由於該標籤爲靜態標籤,若是咱們改用Struts標籤的話可能致使頁面出錯。
 
0
相關文章
相關標籤/搜索