使用Spring MVC統一異常處理實戰

使用Spring MVC統一異常處理實戰

1 描述 
在J2EE項目的開發中,不論是對底層的數據庫操做過程,仍是業務層的處理過程,仍是控制層的處理過程,都不可避免會遇到各類可預知的、不可預知的異常須要處理。每一個過程都單獨處理異常,系統的代碼耦合度高,工做量大且很差統一,維護的工做量也很大。 
那麼,能不能將全部類型的異常處理從各處理過程解耦出來,這樣既保證了相關處理過程的功能較單一,也實現了異常信息的統一處理和維護?答案是確定的。下面將介紹使用Spring MVC統一處理異常的解決和實現過程。 

2 分析 
Spring MVC處理異常有3種方式: 
(1)使用Spring MVC提供的簡單異常處理器SimpleMappingExceptionResolver; 
(2)實現Spring的異常處理接口HandlerExceptionResolver 自定義本身的異常處理器; 
(3)使用@ExceptionHandler註解實現異常處理; 

3 實戰 
3.1 引言 
爲了驗證Spring MVC的3種異常處理方式的實際效果,咱們須要開發一個測試項目,從Dao層、Service層、Controller層分別拋出不一樣的異常,而後分別集成3種方式進行異常處理,從而比較3種方式的優缺點。 

3.2 實戰項目 
3.2.1 項目結構 
 

3.2.2 Dao層代碼 
html

Java代碼  收藏代碼java

  1. @Repository("testDao")  web

  2. public class TestDao {  spring

  3.     public void exception(Integer id) throws Exception {  數據庫

  4.         switch(id) {  服務器

  5.         case 1:  app

  6.             throw new BusinessException("12""dao12");  jsp

  7.         case 2:  ide

  8.             throw new BusinessException("22""dao22");  測試

  9.         case 3:  

  10.             throw new BusinessException("32""dao32");  

  11.         case 4:  

  12.             throw new BusinessException("42""dao42");  

  13.         case 5:  

  14.             throw new BusinessException("52""dao52");  

  15.         default:  

  16.             throw new ParameterException("Dao Parameter Error");  

  17.         }  

  18.     }  

  19. }  


3.2.3 Service層代碼 

Java代碼  收藏代碼

  1. public interface TestService {  

  2.     public void exception(Integer id) throws Exception;  

  3.       

  4.     public void dao(Integer id) throws Exception;  

  5. }  

  6.   

  7. @Service ("testService")  

  8. public class TestServiceImpl implements TestService {  

  9.     @Resource   

  10.     private TestDao testDao;  

  11.       

  12.     public void exception(Integer id) throws Exception {  

  13.         switch(id) {  

  14.         case 1:  

  15.             throw new BusinessException("11""service11");  

  16.         case 2:  

  17.             throw new BusinessException("21""service21");  

  18.         case 3:  

  19.             throw new BusinessException("31""service31");  

  20.         case 4:  

  21.             throw new BusinessException("41""service41");  

  22.         case 5:  

  23.             throw new BusinessException("51""service51");  

  24.         default:  

  25.             throw new ParameterException("Service Parameter Error");  

  26.         }  

  27.     }  

  28.   

  29.     @Override  

  30.     public void dao(Integer id) throws Exception {  

  31.         testDao.exception(id);  

  32.     }  

  33. }  


3.2.4 Controller層代碼 

Java代碼  收藏代碼

  1. @Controller  

  2. public class TestController {  

  3.     @Resource  

  4.     private TestService testService;  

  5.       

  6.     @RequestMapping(value = "/controller.do", method = RequestMethod.GET)  

  7.     public void controller(HttpServletResponse response, Integer id) throws Exception {  

  8.         switch(id) {  

  9.         case 1:  

  10.             throw new BusinessException("10""controller10");  

  11.         case 2:  

  12.             throw new BusinessException("20""controller20");  

  13.         case 3:  

  14.             throw new BusinessException("30""controller30");  

  15.         case 4:  

  16.             throw new BusinessException("40""controller40");  

  17.         case 5:  

  18.             throw new BusinessException("50""controller50");  

  19.         default:  

  20.             throw new ParameterException("Controller Parameter Error");  

  21.         }  

  22.     }  

  23.       

  24.     @RequestMapping(value = "/service.do", method = RequestMethod.GET)  

  25.     public void service(HttpServletResponse response, Integer id) throws Exception {  

  26.         testService.exception(id);  

  27.     }  

  28.       

  29.     @RequestMapping(value = "/dao.do", method = RequestMethod.GET)  

  30.     public void dao(HttpServletResponse response, Integer id) throws Exception {  

  31.         testService.dao(id);  

  32.     }  

  33. }  


3.2.5 JSP頁面代碼 

Java代碼  收藏代碼

  1. <%@ page contentType="text/html; charset=UTF-8"%>  

  2. <html>  

  3. <head>  

  4. <title>Maven Demo</title>  

  5. </head>  

  6. <body>  

  7. <h1>全部的演示例子</h1>  

  8. <h3>[url=./dao.do?id=1]Dao正常錯誤[/url]</h3>  

  9. <h3>[url=./dao.do?id=10]Dao參數錯誤[/url]</h3>  

  10. <h3>[url=./dao.do?id=]Dao未知錯誤[/url]</h3>  

  11.   

  12.   

  13. <h3>[url=./service.do?id=1]Service正常錯誤[/url]</h3>  

  14. <h3>[url=./service.do?id=10]Service參數錯誤[/url]</h3>  

  15. <h3>[url=./service.do?id=]Service未知錯誤[/url]</h3>  

  16.   

  17.   

  18. <h3>[url=./controller.do?id=1]Controller正常錯誤[/url]</h3>  

  19. <h3>[url=./controller.do?id=10]Controller參數錯誤[/url]</h3>  

  20. <h3>[url=./controller.do?id=]Controller未知錯誤[/url]</h3>  

  21.   

  22.   

  23. <h3>[url=./404.do?id=1]404錯誤[/url]</h3>  

  24. </body>  

  25. </html>  


3.3 集成異常處理 
3.3.1 使用SimpleMappingExceptionResolver實現異常處理 
一、在Spring的配置文件applicationContext.xml中增長如下內容: 

Xml代碼  收藏代碼

  1. <bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">  

  2.     <!-- 定義默認的異常處理頁面,當該異常類型的註冊時使用 -->  

  3.     <property name="defaultErrorView" value="error"></property>  

  4.     <!-- 定義異常處理頁面用來獲取異常信息的變量名,默認名爲exception -->  

  5.     <property name="exceptionAttribute" value="ex"></property>  

  6.     <!-- 定義須要特殊處理的異常,用類名或徹底路徑名做爲key,異常也頁名做爲值 -->  

  7.     <property name="exceptionMappings">  

  8.         <props>  

  9.             <prop key="cn.basttg.core.exception.BusinessException">error-business</prop>  

  10.             <prop key="cn.basttg.core.exception.ParameterException">error-parameter</prop>  

  11.   

  12.             <!-- 這裏還能夠繼續擴展對不一樣異常類型的處理 -->  

  13.         </props>  

  14.     </property>  

  15. </bean>  


二、啓動測試項目,經驗證,Dao層、Service層、Controller層拋出的異常(業務異常BusinessException、參數異常ParameterException和其它的異常Exception)都能準確顯示定義的異常處理頁面,達到了統一異常處理的目標。 

三、從上面的集成過程可知,使用SimpleMappingExceptionResolver進行異常處理,具備集成簡單、有良好的擴展性、對已有代碼沒有入侵性等優勢,但該方法僅能獲取到異常信息,若在出現異常時,對須要獲取除異常之外的數據的狀況不適用。 

3.3.2 實現HandlerExceptionResolver 接口自定義異常處理器 
一、增長HandlerExceptionResolver 接口的實現類MyExceptionHandler,代碼以下: 

Java代碼  收藏代碼

  1. public class MyExceptionHandler implements HandlerExceptionResolver {  

  2.   

  3.     public ModelAndView resolveException(HttpServletRequest request, HttpServletResponse response, Object handler,  

  4.             Exception ex) {  

  5.         Map<String, Object> model = new HashMap<String, Object>();  

  6.         model.put("ex", ex);  

  7.           

  8.         // 根據不一樣錯誤轉向不一樣頁面  

  9.         if(ex instanceof BusinessException) {  

  10.             return new ModelAndView("error-business", model);  

  11.         }else if(ex instanceof ParameterException) {  

  12.             return new ModelAndView("error-parameter", model);  

  13.         } else {  

  14.             return new ModelAndView("error", model);  

  15.         }  

  16.     }  

  17. }  


二、在Spring的配置文件applicationContext.xml中增長如下內容: 

Xml代碼  收藏代碼

  1. <bean id="exceptionHandler" class="cn.basttg.core.exception.MyExceptionHandler"/>  


三、啓動測試項目,經驗證,Dao層、Service層、Controller層拋出的異常(業務異常BusinessException、參數異常ParameterException和其它的異常Exception)都能準確顯示定義的異常處理頁面,達到了統一異常處理的目標。 

四、從上面的集成過程可知,使用實現HandlerExceptionResolver接口的異常處理器進行異常處理,具備集成簡單、有良好的擴展性、對已有代碼沒有入侵性等優勢,同時,在異常處理時能獲取致使出現異常的對象,有利於提供更詳細的異常處理信息。 

3.3.3 使用@ExceptionHandler註解實現異常處理 
一、增長BaseController類,並在類中使用@ExceptionHandler註解聲明異常處理,代碼以下: 

Java代碼  收藏代碼

  1. public class BaseController {  

  2.     /** 基於@ExceptionHandler異常處理 */  

  3.     @ExceptionHandler  

  4.     public String exp(HttpServletRequest request, Exception ex) {  

  5.           

  6.         request.setAttribute("ex", ex);  

  7.           

  8.         // 根據不一樣錯誤轉向不一樣頁面  

  9.         if(ex instanceof BusinessException) {  

  10.             return "error-business";  

  11.         }else if(ex instanceof ParameterException) {  

  12.             return "error-parameter";  

  13.         } else {  

  14.             return "error";  

  15.         }  

  16.     }  

  17. }  


二、修改代碼,使全部須要異常處理的Controller都繼承該類,以下所示,修改後的TestController類繼承於BaseController: 

Java代碼  收藏代碼

  1. public class TestController extends BaseController  


三、啓動測試項目,經驗證,Dao層、Service層、Controller層拋出的異常(業務異常BusinessException、參數異常ParameterException和其它的異常Exception)都能準確顯示定義的異常處理頁面,達到了統一異常處理的目標。 

四、從上面的集成過程可知,使用@ExceptionHandler註解實現異常處理,具備集成簡單、有擴展性好(只須要將要異常處理的Controller類繼承於BaseController便可)、不須要附加Spring配置等優勢,但該方法對已有代碼存在入侵性(須要修改已有代碼,使相關類繼承於BaseController),在異常處理時不能獲取除異常之外的數據。 

3.4 未捕獲異常的處理 
對於Unchecked Exception而言,因爲代碼不強制捕獲,每每被忽略,若是運行期產生了Unchecked Exception,而代碼中又沒有進行相應的捕獲和處理,則咱們可能不得不面對尷尬的40四、500……等服務器內部錯誤提示頁面。 
咱們須要一個全面而有效的異常處理機制。目前大多數服務器也都支持在Web.xml中經過<error-page>(Websphere/Weblogic)或者<error-code>(Tomcat)節點配置特定異常狀況的顯示頁面。修改web.xml文件,增長如下內容: 

Xml代碼  收藏代碼

  1. <!-- 出錯頁面定義 -->  

  2. <error-page>  

  3.     <exception-type>java.lang.Throwable</exception-type>  

  4.     <location>/500.jsp</location>  

  5. </error-page>  

  6. <error-page>  

  7.     <error-code>500</error-code>  

  8.     <location>/500.jsp</location>  

  9. </error-page>  

  10. <error-page>  

  11.     <error-code>404</error-code>  

  12.     <location>/404.jsp</location>  

  13. </error-page>  

  14.   

  15. <!-- 這裏可繼續增長服務器錯誤號的處理及對應顯示的頁面 -->  


4 解決結果 
一、運行測試項目顯示的首頁,以下圖所示: 


二、業務錯誤顯示的頁面,以下圖所示: 


三、參數錯誤顯示的頁面,以下圖所示: 


四、未知錯誤顯示的頁面,以下圖所示: 


五、服務器內部錯誤頁面,以下圖所示: 


5 總結 
綜合上述可知,Spring MVC集成異常處理3種方式均可以達到統一異常處理的目標。從3種方式的優缺點比較,若只須要簡單的集成異常處理,推薦使用SimpleMappingExceptionResolver便可;若須要集成的異常處理可以更具個性化,提供給用戶更詳細的異常信息,推薦自定義實現HandlerExceptionResolver接口的方式;若不喜歡Spring配置文件或要實現「零配置」,且能接受對原有代碼的適當入侵,則建議使用@ExceptionHandler註解方式。 

6 源代碼 
源代碼項目以下所示,爲Maven項目,若需運行,請自行獲取相關的依賴包。 
點擊這裏獲取源代碼 

7 參考資料 [1] Spring MVC統一處理異常的方法 http://hi.baidu.com/99999999hao/blog/item/25da70174bfbf642f919b8c3.html [2] SpringMVC 異常處理初探 http://exceptioneye.iteye.com/blog/1306150 [3] Spring3 MVC 深刻研究 http://elf8848.iteye.com/blog/875830 [4] Spring MVC異常處理 http://blog.csdn.net/rj042/article/details/7380442

相關文章
相關標籤/搜索