快速學習-SpringMVC 中的異常處理
- 2020 年 4 月 8 日
- 筆記
第3章 SpringMVC 中的異常處理
3.1 異常處理的思路
系統中異常包括兩類:預期異常和運行時異常 RuntimeException,前者通過捕獲異常從而獲取異常信息,後者主要通過規範代碼開發、測試通過手段減少運行時異常的發生。
系統的 dao、service、controller 出現都通過 throws Exception 向上拋出,最後由 springmvc 前端控制器交由異常處理器進行異常處理,如下圖:

3.2 實現步驟
3.2.1 編寫異常類和錯誤頁面
public class CustomException extends Exception { private String message; public CustomException(String message) { this.message = message; } public String getMessage() { return message; } }
JSP頁面
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title> 執行失敗 </title> </head> <body> 執行失敗! ${message } </body> </html>
3.2.2 自定義異常處理器
public class CustomExceptionResolver implements HandlerExceptionResolver { @Override public ModelAndView resolveException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) { ex.printStackTrace(); CustomException customException = null; //如果拋出的是系統自定義異常則直接轉換 if (ex instanceof CustomException) { customException = (CustomException) ex; } else { //如果拋出的不是系統自定義異常則重新構造一個系統錯誤異常。 customException = new CustomException("系統錯誤,請與系統管理 員聯繫!"); } ModelAndView modelAndView = new ModelAndView(); modelAndView.addObject("message", customException.getMessage()); modelAndView.setViewName("error"); return modelAndView; } }
3.2.3 配置異常處理器
<!-- 配置自定義異常處理器 --> <bean id="handlerExceptionResolver" class="com.itheima.exception.CustomExceptionResolver"/>
3.2.4 運行結果
