【原創】Struts1.x系列教程(18):使用DispatchAction類呼叫多個Action方法
本文為原創,如需轉載,請註明作者和出處,謝謝!
在使用Struts動作時,每一個Action都需要編寫一個類,並且要在struts-config.xml進行配置。這對於一個擁有很多Action的Web程式來說,工作量是非常大的。為此,Struts提供了DispatchAction類,這個類允許將一個Action作為一個方法來呼叫。在Web瀏覽器中通過請求引數來指定要呼叫的動作。
雖然DispatchAction類是一個抽象類,但其中卻沒有一個抽象方法。因此,DisplatchAction的子類不用實現任何DisplatchAction類中的方法。但如果要處理Action程式碼,就必須根據相應的Action來編寫Action方法。一個Action方法除了方法名和execute方法不一樣外,其他的都和execute方法完全一樣。但編寫Action方法時要注意,Action方法名必須和用於指定動作的請求引數值一致(大小寫也必須一致)。在下面的例子中演示了通過DispatchAction類實現方法和Action的對應。在這個例子中,有三個方法:fr、en和unspecificed。其中fr和en是兩個Action方法,分別用於將當前頁面轉發到法文和英文頁面,而當用於指定Action的請求引數不存在時,則呼叫unspecificed方法(在這個方法中將當前頁面轉發到中文頁面)。在這個程式中使用的用於指定Action的請求引數為language(讀者可以指定自己的請求引數)。
在
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
--> 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/
--><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/
-->if (name == null) // name表示Action方法名
{
return this.unspecified(mapping, form, request, response);
}
從上面的程式碼可知,只有當name為null時才會呼叫unspecified方法。這個name值實際上也就是language引數的值。也就是說,只有當language引數不存在時,name才會為null。如果在language的引數值所指的Action方法不存在時或者name為空串的情況下都將name設為null,那麼就可以達到我們的目的。
在DispatchAction類中有一個dispatchMethod方法,可以在這個方法中處理請求引數值為空串(也就是當“language=”時將方法名設為null)和Action方法未找到的情況。在Action類中有兩個特殊方法:execute和perform。如果呼叫了這兩個方法,將會出現遞迴呼叫的情況。因此,在呼叫這兩個方法時也需要將方法名設為null。這個工作可以在DispatchAction類的getMethodName方法中實現。為了完成這個功能,需要將上面的程式碼放到MyDispatchAction類中。
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->protected 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;
}
http://localhost:8080/samples/locale.do?language=
http://localhost:8080/samples/locale.do?language=unknown
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12921506/viewspace-580576/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【原創】Struts1.x系列教程(8):上傳單個檔案
- 【原創】Struts1.x系列教程(14):動態FormORM
- 【原創】Struts1.x系列教程(6):Bean標籤庫Bean
- 【原創】Struts1.x系列教程(15):使用DownloadAction類統計檔案下載次數
- 【原創】Struts1.x系列教程(7):Logic標籤庫
- 【原創】Struts1.x系列教程(2):簡單的資料驗證
- 【原創】Struts1.x系列教程(4):標籤庫概述與安裝
- 【原創】Struts1.x系列教程(17):包含和轉入Web資源Web
- 【原創】Struts1.x系列教程(1)-B:用MyEclipse開發第一個Struts程式Eclipse
- 【原創】Struts1.x系列教程(12):Validator驗證框架的內建標準驗證框架
- TempData["a"]多個Action方法之前共享資料
- powerDesigner使用教程【原創】
- java類中 多個方法求和.Java
- 【原創】Java多執行緒初學者指南(5):join方法的使用Java執行緒
- 一個例項中,多個synchronized方法的呼叫synchronized
- Action呼叫字首詳解
- Struts2教程6:在Action類中獲得HttpServletResponse物件的四種方法HTTPServlet物件
- JVM系列-方法呼叫的原理JVM
- AndroidNDK開發系列教程3:基本方法呼叫及傳參(續)Android
- python中calss(類)的使用,類的教程,類中的函式怎麼呼叫。Python函式
- 使用ActivityGroup類顯示多個Activity
- 【原創】使用dbms_stats但不生成histogram的方法Histogram
- [原創]介面、類、抽象類、物件的另類解釋抽象物件
- 萬能PHP Curl封裝類,適合多個場景,呼叫方便!PHP封裝
- [原創]ORACLE SQL TUNING ADVISOR 使用方法OracleSQL
- odoo 開發入門教程系列-準備一些操作(Action)?Odoo
- 【原創】中華通訊錄 pj教程
- C# 反射呼叫擴充類方法C#反射
- php中呼叫類的私有方法PHP
- 用反射呼叫Method類的invoke方法反射
- 【原創】多專案控制的困惑
- Selenium系列教程-07 使用Actions類模擬複雜操作
- ASP.NET MVC 5呼叫其他ActionASP.NETMVC
- C++ 多個類的 DLL 封裝以及隱式連結和顯式連結 2 種方法呼叫C++封裝
- [原創]注入技術系列:一個批量驗證DLL劫持的工具
- [原創]注入技術系列:一個批次驗證DLL劫持的工具
- 18個月的18個創業經驗總結創業
- 【Vegas原創】解決cmd視窗不夠使用的方法