首頁(yè) 考試吧論壇 Exam8視線 考試商城 網(wǎng)絡(luò)課程 模擬考試 考友錄 實(shí)用文檔 繽紛校園 英語(yǔ)學(xué)習(xí)
2010考研 | 自學(xué)考試 | 成人高考 | 專 升 本 | 法律碩士 | MBA/MPA | 中 科 院
四六級(jí) | 商務(wù)英語(yǔ) | 公共英語(yǔ) | 職稱日語(yǔ) | 職稱英語(yǔ) | 博思 | 口譯筆譯 | GRE GMAT | 日語(yǔ) | 托福
雅思 | 專四專八 | 新概念 | 自考英語(yǔ) | 零起點(diǎn)英、、、、韓語(yǔ) | 在職申碩英語(yǔ)
在職攻碩英語(yǔ) | 成人英語(yǔ)三級(jí)
等級(jí)考試 | 水平考試 | 微軟認(rèn)證 | 思科認(rèn)證 | Oracle認(rèn)證 | Linux認(rèn)證
公務(wù)員 | 報(bào)關(guān)員 | 報(bào)檢員 | 外銷員 | 司法考試 | 導(dǎo)游考試 | 教師資格 | 國(guó)際商務(wù)師 | 跟單員
單證員 | 物流師 | 價(jià)格鑒證師 | 銀行從業(yè)資格 | 證券從業(yè)資格 | 人力資源管理師 | 管理咨詢師
期貨從業(yè)資格 | 社會(huì)工作者
會(huì)計(jì)職稱 | 注會(huì)CPA | 經(jīng)濟(jì)師 | 統(tǒng)計(jì)師 | 注冊(cè)稅務(wù)師 | 評(píng)估師 | 精算師 | 高會(huì) | ACCA | 審計(jì)師
法律顧問(wèn) | 會(huì)計(jì)證
一級(jí)建造師 | 二級(jí)建造師 | 造價(jià)師 | 監(jiān)理師 | 安全師 | 咨詢師 | 結(jié)構(gòu)師 | 建筑師 | 安全評(píng)價(jià)師
房地產(chǎn)估價(jià)師 | 土地估價(jià)師 | 設(shè)備監(jiān)理師 | 巖土工程師 | 質(zhì)量資格 | 房地產(chǎn)經(jīng)紀(jì)人 | 造價(jià)員
投資項(xiàng)目管理 | 土地代理人 | 環(huán)保師 | 環(huán)境影響評(píng)價(jià) | 物業(yè)管理師 | 城市規(guī)劃師 | 公路監(jiān)理師
公路造價(jià)工程師 | 招標(biāo)師
執(zhí)業(yè)護(hù)士 | 執(zhí)業(yè)醫(yī)師 | 執(zhí)業(yè)藥師 | 衛(wèi)生資格
您現(xiàn)在的位置: 考試吧(Exam8.com) > 軟件水平考試 > 系統(tǒng)分析師 > 正文

怎樣構(gòu)建更好的企業(yè)應(yīng)用程序異常處理框架

  企業(yè)應(yīng)用程序在構(gòu)建時(shí)常常對(duì)異常處理關(guān)注甚少,這會(huì)造成對(duì)低級(jí)異常(如 java.rmi.RemoteException 和 javax.naming.NamingException)的過(guò)度依賴。我們向客戶機(jī)提供諸如 ApplicationException 和 InvalidDataException 之類的異常,而沒(méi)有讓 Web 層處理象 java.rmi.RemoteException 或 javax.naming.NamingException 這樣的異常。

  遠(yuǎn)程和命名異常是系統(tǒng)級(jí)異常,而應(yīng)用程序和非法數(shù)據(jù)異常是業(yè)務(wù)級(jí)異常,因?yàn)樗鼈兲峤桓m用的業(yè)務(wù)信息。當(dāng)決定拋出何種類型的異常時(shí),您應(yīng)該總是首先考慮將要處理所報(bào)告異常的層。

  Web 層通常是由執(zhí)行業(yè)務(wù)任務(wù)的最終用戶驅(qū)動(dòng)的,所以最好用它處理業(yè)務(wù)級(jí)異常。但是,在 EJB 層,您正在執(zhí)行系統(tǒng)級(jí)任務(wù),如使用 JNDI 或數(shù)據(jù)庫(kù)。盡管這些任務(wù)最終將被合并到業(yè)務(wù)邏輯中,但是最好用諸如 RemoteException 之類的系統(tǒng)級(jí)異常來(lái)表示它們。 mda.com

  理論上,您可以讓所有 Web 層方法預(yù)期處理和響應(yīng)單個(gè)應(yīng)用程序異常,正如我們?cè)谙惹暗囊恍┦纠兴龅囊粯�。但這種方法不適用于長(zhǎng)時(shí)間運(yùn)行。讓您的委派方法拋出更具體的異常,這是一個(gè)好得多的異常處理方案,從根本上講,這對(duì)接收客戶機(jī)更有用。在這篇技巧文章中,我們將討論兩種技術(shù),它們將有助于您創(chuàng)建信息更豐富、更具體的異常,而不會(huì)生成大量不必要的代碼。

  嵌套的異常

  在設(shè)計(jì)可靠的異常處理方案時(shí),要考慮的第一件事情就是對(duì)所謂的低級(jí)或系統(tǒng)級(jí)異常進(jìn)行抽象化。這些核心 Java 異常通常會(huì)報(bào)告網(wǎng)絡(luò)流量中的錯(cuò)誤、JNDI 或 RMI 問(wèn)題,或者是應(yīng)用程序中的其它技術(shù)問(wèn)題。RemoteException、EJBException 和 NamingException 是企業(yè) Java 編程中低級(jí)異常的常見(jiàn)例子。

  這些異常完全沒(méi)有任何意義,由 Web 層的客戶機(jī)接收時(shí)尤其容易混淆。如果客戶機(jī)調(diào)用 purchase() 并接收到 NamingException,那么它在解決這個(gè)異常時(shí)會(huì)一籌莫展。同時(shí),應(yīng)用程序代碼可能需要訪問(wèn)這些異常中的信息,因此不能輕易地拋棄或忽略它們。

  答案是提供一類更有用的異常,它還包含低級(jí)異常。清單 1 演示了一個(gè)專為這一點(diǎn)設(shè)計(jì)的簡(jiǎn)單 ApplicationException:

清單 1. 嵌套的異常 package com.ibm;

import java.io.PrintStream; import java.io.PrintWriter; public class ApplicationException extends Exception { /** A wrapped Throwable */ protected Throwable cause; public ApplicationException() { super("Error occurred in application."); } public ApplicationException(String message) { super(message); } public ApplicationException( String message, Throwable cause) { super(message); this.cause = cause; } // Created to match the JDK 1.4 Throwable method. public Throwable initCause(Throwable cause) { this.cause = cause; return cause; } public String getMessage() { // Get this exception‘s message. String msg = super.getMessage(); Throwable parent = this; Throwable child; // Look for nested exceptions. while((child = getNestedException(parent)) != null) { // Get the child‘s message. String msg2 = child.getMessage(); // If we found a message for the child exception, // we append it. if (msg2 != null) { if (msg != null) { msg += ": " + msg2; } else { msg = msg2; } } // Any nested ApplicationException will append its own // children, so we need to break out of here. if (child instanceof ApplicationException) { break; } parent = child; } // Return the completed message. return msg; } public void printStackTrace() { // Print the stack trace for this exception. super.printStackTrace(); Throwable parent = this; Throwable child; // Print the stack trace for each nested exception. while((child = getNestedException(parent)) != null) { if (child != null) { System.err.print("Caused by: "); child.printStackTrace(); if (child instanceof ApplicationException) { break; } parent = child; } } } public void printStackTrace(PrintStream s) { // Print the stack trace for this exception. super.printStackTrace(s); Throwable parent = this; Throwable child; // Print the stack trace for each nested exception. while((child = getNestedException(parent)) != null) { if (child != null) { s.print("Caused by: "); child.printStackTrace(s); if (child instanceof ApplicationException) { break; } parent = child; } } } public void printStackTrace(PrintWriter w) { // Print the stack trace for this exception. super.printStackTrace(w); Throwable parent = this; Throwable child; // Print the stack trace for each nested exception. while((child = getNestedException(parent)) != null) { if (child != null) { w.print("Caused by: "); child.printStackTrace(w); if (child instanceof ApplicationException) { break; } parent = child; } } } public Throwable getCause() { return cause; } }

  清單 1 中的代碼很簡(jiǎn)單;我們已經(jīng)簡(jiǎn)單地將多個(gè)異�!按痹谝黄�,以創(chuàng)建單個(gè)、嵌套的異常。但是,真正的好處在于將這種技術(shù)作為出發(fā)點(diǎn),以創(chuàng)建特定于應(yīng)用程序的異常層次結(jié)構(gòu)。異常層次結(jié)構(gòu)將允許 EJB 客戶機(jī)既接收特定于業(yè)務(wù)的異常也接收特定于系統(tǒng)的信息,而不需要編寫(xiě)大量額外代碼。

轉(zhuǎn)帖于:軟件水平考試_考試吧
文章搜索
怎樣構(gòu)建更好的企業(yè)應(yīng)用程序異常處理框架網(wǎng)友評(píng)論網(wǎng)友評(píng)論
版權(quán)聲明 --------------------------------------------------------------------------------------
    如果軟件水平考試網(wǎng)所轉(zhuǎn)載內(nèi)容不慎侵犯了您的權(quán)益,請(qǐng)與我們聯(lián)系,我們將會(huì)及時(shí)處理。如轉(zhuǎn)載本軟件水平考試網(wǎng)內(nèi)容,請(qǐng)注明出處。
 gaoxiaoliang