【原創】Struts1.x系列教程(18):使用DispatchAction類呼叫多個Action方法

銀河使者發表於2009-03-30

本文為原創,如需轉載,請註明作者和出處,謝謝!

    在使用Struts動作時,每一個Action都需要編寫一個類,並且要在struts-config.xml進行配置。這對於一個擁有很多ActionWeb程式來說,工作量是非常大的。為此,Struts提供了DispatchAction類,這個類允許將一個Action作為一個方法來呼叫。在Web瀏覽器中通過請求引數來指定要呼叫的動作。
    雖然
DispatchAction類是一個抽象類,但其中卻沒有一個抽象方法。因此,DisplatchAction的子類不用實現任何DisplatchAction類中的方法。但如果要處理Action程式碼,就必須根據相應的Action來編寫Action方法。一個Action方法除了方法名和execute方法不一樣外,其他的都和execute方法完全一樣。但編寫Action方法時要注意,Action方法名必須和用於指定動作的請求引數值一致(大小寫也必須一致)。在下面的例子中演示了通過DispatchAction類實現方法和Action的對應。在這個例子中,有三個方法:frenunspecificed。其中fren是兩個Action方法,分別用於將當前頁面轉發到法文和英文頁面,而當用於指定Action的請求引數不存在時,則呼叫unspecificed方法(在這個方法中將當前頁面轉發到中文頁面)。在這個程式中使用的用於指定Action的請求引數為language(讀者可以指定自己的請求引數)。
    在
工程目錄>\src\action目錄建立一個MyDispatchAction.java檔案,程式碼如下:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt  package action;
  
  
import javax.servlet.RequestDispatcher;
  
import javax.servlet.http.*;
  
import org.apache.struts.action.*;
  
import org.apache.struts.actions.*;
  
  
public class MyDispatchAction extends DispatchAction
  {
      
// forward到法文頁面
      public ActionForward fr(ActionMapping mapping, ActionForm form,
              HttpServletRequest request, HttpServletResponse response)
      {
          
try
          {
              RequestDispatcher rd 
= request.getRequestDispatcher("/newGlobal.jsp?language=fr");
              rd.forward(request, response);
          }
          
catch (Exception e)
          {
          }
          
return null;
      }
      
// forward到英文頁面
      public ActionForward en(ActionMapping mapping, ActionForm form,
              HttpServletRequest request, HttpServletResponse response)
      {
          
try
          {
              RequestDispatcher rd 
= request.getRequestDispatcher("/newGlobal.jsp?language=en");
              rd.forward(request, response);
          }
          
catch (Exception e)
          {
          }
          
return null;
      }
      
// 在未使用language=fr和language=en作為訪問引數的情況時呼叫這個方法
      protected ActionForward unspecified(ActionMapping mapping, ActionForm form,
              HttpServletRequest request, HttpServletResponse response)
              
throws Exception
      {
          
try
          {
               
// forward到中文頁面
              RequestDispatcher rd = request.getRequestDispatcher("/newGlobal.jsp?language=zh");
              rd.forward(request, response);
          }
          
catch (Exception e)
          {  
          }
          
return null;
      }
  }

    在struts-config.xml檔案中加入如下的配置程式碼來配置MyDispatchAction

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt<action path="/locale" type="action.MyDispatchAction" parameter="language"/>

其中parameter參數列示用於指定Action的請求引數名。

在啟動Tomcat後,可通過如下的URL進行測試:

   
顯示英文頁面:

http://localhost:8080/samples/locale.do?language=en

   
顯示法文頁面:

http://localhost:8080/samples/locale.do?language=fr

顯示中文頁面(預設頁面):

http://localhost:8080/samples/locale.do

雖然上面的程式碼可以很好地呼叫相應的Action方法,但在一些情況時,如請求引數language指定的Action方法不存在時,就會丟擲異常。那麼如果我們想在非正常情況下都呼叫預設的處理Action動作的方法(也就是unspecificed方法)該怎麼辦呢?

實現上,實現這個功能也非常簡單,只要我們知道在什麼條件下呼叫unspecified方法,然後在非正常情況下,都將條件設為呼叫unspecified方法的條件就可實現這個功能。在檢視DispatchAction類的原始碼後,可找到如下的程式碼片段:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtif (name == null)   // name表示Action方法名
{
    return this.unspecified(mapping, form, request, response);
}

從上面的程式碼可知,只有當namenull時才會呼叫unspecified方法。這個name值實際上也就是language引數的值。也就是說,只有當language引數不存在時,name才會為null。如果在language的引數值所指的Action方法不存在時或者name為空串的情況下都將name設為null,那麼就可以達到我們的目的。

DispatchAction類中有一個dispatchMethod方法,可以在這個方法中處理請求引數值為空串(也就是當“language=”時將方法名設為null)和Action方法未找到的情況。在Action類中有兩個特殊方法:executeperform。如果呼叫了這兩個方法,將會出現遞迴呼叫的情況。因此,在呼叫這兩個方法時也需要將方法名設為null。這個工作可以在DispatchAction類的getMethodName方法中實現。為了完成這個功能,需要將上面的程式碼放到MyDispatchAction類中。 

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtprotected ActionForward dispatchMethod(ActionMapping mapping,
            ActionForm form, HttpServletRequest request,
            HttpServletResponse response, String name) 
throws Exception
{
      ActionForward af 
= null;
      
// 在language引數值為空串的情況下,將方法名賦為null
      if (name != null)  // name表示Action方法名,也是language的引數值     
         
if (name.equals(""))
              name 
= null;
      
try
      {
             af 
= super.dispatchMethod(mapping, form, request, response, name);
      }
      
catch(NoSuchMethodException e)  // 處理Action方法未找到的情況
      {
           
// 在language的引數值沒有對應的Action方法時,將方法名賦為null
          name = null;            
          af 
= super.dispatchMethod(mapping, form, request, response, name);
      }
      
return af;
}
  
// 當language的引數值為execute或perfore時,必須將方法名賦為null,否則會出現遞迴呼叫
protected String getMethodName(ActionMapping mapping, ActionForm form,
          HttpServletRequest request, HttpServletResponse response,
          String parameter) 
throws Exception
{
      String methodName 
= super.getMethodName(mapping, form, request, response, parameter);
      
if ("execute".equals(methodName) || "perform".equals(methodName))
           
return null;  // 如果訪問的是execute和perform,直接將方法名設為null
      return methodName;
}
  現在我們可以用任何請求引數來訪問locale動作,只要未找到Action方法,就會呼叫預設的unspecified方法。讀者可以使用如下的URL來實驗一下:

http://localhost:8080/samples/locale.do?language=

http://localhost:8080/samples/locale.do?language=unknown

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12921506/viewspace-580576/,如需轉載,請註明出處,否則將追究法律責任。

相關文章