SpringMVC中的異常處理集錦

来源:http://www.cnblogs.com/zhangzongle/archive/2016/11/21/6087500.html
-Advertisement-
Play Games

1 描述 在J2EE項目的開發中,不管是對底層的資料庫操作過程,還是業務層的處理過程,還是控制層的處理過程,都不可避免會遇到各種可預知的、不可預知的異常需要處理。每個過程都單獨處理異常,系統的代碼耦合度高,工作量大且不好統一,維護的工作量也很大。 那麼,能不能將所有類型的異常處理從各處理過程解耦出來 ...


1 描述 
在J2EE項目的開發中,不管是對底層的資料庫操作過程,還是業務層的處理過程,還是控制層的處理過程,都不可避免會遇到各種可預知的、不可預知的異常需要處理。每個過程都單獨處理異常,系統的代碼耦合度高,工作量大且不好統一,維護的工作量也很大。 
那麼,能不能將所有類型的異常處理從各處理過程解耦出來,這樣既保證了相關處理過程的功能較單一,也實現了異常信息的統一處理和維護?答案是肯定的。下麵將介紹使用Spring MVC統一處理異常的解決和實現過程。 
2 分析 
Spring MVC處理異常有3種方式: 
(1)使用Spring MVC提供的簡單異常處理器SimpleMappingExceptionResolver; 
(2)實現Spring的異常處理SimpleMappingExceptionResolver自定義自己的異常處理器; 

(3)實現HandlerExceptionResolver 介面自定義異常處理器 
(4)使用註解@ExceptionHandler實現異常處理; 

3 實戰

一:使用Spring MVC提供的簡單異常處理器SimpleMappingExceptionResolver

源碼介紹:

1.lib包(jar包)和web.xml配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
  <display-name></display-name>
  <servlet>
    <servlet-name>springmvc</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:applicationContext.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>springmvc</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>
View Code

2.index.jsp(測試頁面入口)和 error.jsp(有錯誤則會跳到此頁面)和 hello.jsp(沒錯誤則會跳到此頁面)

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://"
            + request.getServerName() + ":" + request.getServerPort()
            + path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>異常處理器測試</title>
</head>
<body>
    <form action="frist.do" method="post">
        <input type="submit" value="測試" />
    </form>
</body>
</html>
View Code
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    <title>這是錯誤頁面</title>
  </head>
  <body>
       這是錯誤頁面  ${ex.message }
  </body>
</html>
View Code
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    <title>成功歡迎頁面</title>
  </head>
  <body>
       你竟然沒報錯<br/>
  </body>
</html>
View Code

3.MyController,java(定義自己的處理器)

package cn.zhang.controller;
//定義自己的處理器
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
public class MyController{
   
    @RequestMapping(value="/frist.do",produces="text/html;charset=utf-8",method=RequestMethod.POST)
    public String frist(){
        //製造一個異常
        int i=5/0;
        System.out.println(i);
        return "forward:/hello.jsp";
    }
}
View Code

4.applicationContext.xml(Spring的配置文件)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!-- 使用註解方式完成映射 -->
    <context:component-scan base-package="cn.zhang.controller"></context:component-scan>
    <!-- mvc的註解驅動 -->
    <mvc:annotation-driven />
    <!-- 註冊系統異常處理器 -->
    <bean
        class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
        <property name="defaultErrorView" value="error.jsp"></property>
        <property name="exceptionAttribute" value="ex"></property>
    </bean>

</beans>
View Code

測試展示:

點擊測試,由於我們在自己的處理器製造了一個異常,所以它會跳到錯誤頁面

二:實現Spring的異常處理介面SimpleMappingExceptionResolver自定義自己的異常處理器

源碼介紹:

1.lib包和web.xml一樣(不做解釋)

2.error包中是指定錯誤頁面

  ageerrors.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://"
            + request.getServerName() + ":" + request.getServerPort()
            + path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>年齡錯誤頁面</title>
</head>
<body>年齡錯誤   ${ex.message }
</body>
</html>
View Code

  nameerrors.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    <title>名字錯誤頁面</title>
  </head>
  <body>
   名字錯誤
   ${ex.message }
  </body>
</html>
View Code

3.MyController.java

package cn.zhang.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import cn.zhang.exception.AgeException;
import cn.zhang.exception.NameException;
import cn.zhang.exception.UserException;

//定義自己的處理器

@Controller
public class MyController{
   
    @RequestMapping(value="/frist.do")
    public String frist(Model model,String name,int age) throws UserException{
        if (name.equals("admin")) {
            throw new NameException("用戶名錯誤");    
        }
        if (age>50) {
            throw new AgeException("年齡過大");
        }
        return "forward:/hello.jsp";
    }
}
View Code

4.exception包下,指定我們的異常類

 UserException.java

package cn.zhang.exception;
//定義UserException繼承Exception
public class UserException extends Exception {

    private static final long serialVersionUID = 1L;

    public UserException() {
        super();
        // TODO Auto-generated constructor stub
    }

    public UserException(String message) {
        super(message);
        // TODO Auto-generated constructor stub
    }
    
}
View Code

 AgeException.java

package cn.zhang.exception;
//繼承UserException父類
public class AgeException extends UserException {

    private static final long serialVersionUID = 1L;

    public AgeException() {
        super();
        // TODO Auto-generated constructor stub
    }

    public AgeException(String message) {
        super(message);
        // TODO Auto-generated constructor stub
    }
    
    

}
View Code

 NameException.java

package cn.zhang.exception;
//繼承UserException父類
public class NameException extends UserException {

    private static final long serialVersionUID = 1L;

    public NameException() {
        super();
        // TODO Auto-generated constructor stub
    }

    public NameException(String message) {
        super(message);
        // TODO Auto-generated constructor stub
    }

}
View Code

5.applicationContext.xml(Spring的配置文件)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!-- 使用註解方式完成映射 -->
    <context:component-scan base-package="cn.zhang.controller"></context:component-scan>
    <!-- mvc的註解驅動 -->
    <mvc:annotation-driven />
    <!-- 實現Spring的異常處理介面HandlerExceptionResolver 自定義自己的異常處理器 -->
    <bean
        class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
        <property name="defaultErrorView" value="error.jsp"></property>
        <property name="exceptionAttribute" value="ex"></property>
        <!-- 指定錯誤到指定頁面 -->
        <property name="exceptionMappings">
            <props>
                <prop key="cn.zhang.exception.AgeException">error/ageerrors.jsp</prop>
                <prop key="cn.zhang.exception.NameException">error/nameerrors.jsp</prop>
            </props>
        </property>

    </bean>

</beans>
View Code

結果展示:

 三:實現HandlerExceptionResolver 介面自定義異常處理器 

 要修改的代碼:

 1.MyHandlerExceptionResolver.java--定義自己的異常處理器(實現HandlerExceptionResolver介面)

package cn.zhang.resolvers;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.HandlerExceptionResolver;
import org.springframework.web.servlet.ModelAndView;
import cn.zhang.exception.AgeException;
import cn.zhang.exception.NameException;
/**
 * 定義自己的異常處理器(實現HandlerExceptionResolver介面)
 * @author zhangzong
 *
 */
public class MyHandlerExceptionResolver implements HandlerExceptionResolver{

    public ModelAndView resolveException(HttpServletRequest request,
            HttpServletResponse response, Object handler, Exception ex) {
        
        ModelAndView  mv=new ModelAndView();
        mv.addObject("ex",ex);
        
        mv.setViewName("/errors.jsp");
        

        if(ex instanceof NameException){
            mv.setViewName("/error/nameerrors.jsp");
        }
        
        if(ex instanceof AgeException){
            mv.setViewName("/error/ageerrors.jsp");
        }
        
        return mv;
    }
    
}
View Code

 2.applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!-- 使用註解方式完成映射 -->
    <context:component-scan base-package="cn.zhang.controller"></context:component-scan>
    <!-- mvc的註解驅動 -->
    <mvc:annotation-driven />
    <!-- 註冊自定義異常處理器 -->
     <bean class="cn.zhang.resolvers.MyHandlerExceptionResolver"/>
</beans>
View Code

 其他的相同,不作解釋

 四:使用註解@ExceptionHandler實現異常處理

 

源碼介紹:

1.其他配置相同(不做解釋)

2.MyController.java--繼承我們自己定義的註解異常處理器MyHandlerExceptionResolver

package cn.zhang.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import cn.zhang.exception.AgeException;
import cn.zhang.exception.NameException;
import cn.zhang.exception.UserException;
import cn.zhang.resolvers.MyHandlerExceptionResolver;

//定義自己的處理器
//繼承我們自己定義的註解異常處理器MyHandlerExceptionResolver
@Controller
public class MyController extends MyHandlerExceptionResolver{
   
    @RequestMapping(value="/frist.do")
    public String frist(Model model,String name,int age) throws UserException{
        if (name.equals("admin")) {
            throw new NameException("用戶名錯誤");    
        }
        if (age>50) {
            throw new AgeException("年齡過大");
        }
        return "forward:/hello.jsp";
    }
}
View Code

3.MyHandlerExceptionResolver.java--定義自己的異常處理器(使用註解)

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 最新仿牛採紐約育樂彩票網站完整版源碼,集成多彩種帶WAP手機端配置環境: php5.2+Mysql適用範圍: 最新仿牛採紐約育樂彩票網站完整版源碼,集成多彩種,漂亮大氣UI,WAP手機端,開獎工具。雖然我從來不調試發佈涉及到彩票這些的源碼,但是這次發現的這個程式確實非常好看;<ignore_js_o ...
  • 創建eclipse快捷的方式,並Copy到桌面。 打開快捷方式的屬性視窗,在【目標】欄,增加參數 –data 你的工作區目錄 ...
  • 1 、 在inux和 UNIX系統安裝中(包括Mac OS X),Python的解釋器就已經存在了。輸入python命令使用 liuyangdeMacBook-Pro:~ liuyang$ python Python 2.7.10 (default, Jul 30 2016, 18:31:42) [ ...
  • 我們在開髮網站的時候經常會使用到wampsever伺服器,在測試項目的時候我們會經常發現,wampsever伺服器線上模式和離線模式都可以使用並且測試,還有一個現象就是我們在測試無線網路,用手機訪問的時候,只有wampsever線上模式可以通過區域網訪問電腦中的項目,那麼這兩者的區別是什麼呢? wa ...
  • PHP_VERSION_ID是一個整數,表示當前PHP的版本,從php5.2.7版本開始使用的,比如50207表示5.2.7。和PHP版本相關的巨集定義在文件 phpsrcdir/main/php_version.h里,如下 // 文件位置: phpsrc/main/php_version.h /* ...
  • 1,理解控制反轉 以前一直說著這個詞,然後把它等於上ioc這個詞,再等於上代碼里一個bean里依賴了其他bean,不用new,用註解,用xml去描述,就可以了。能用就行了,實際理論的不管也不影響編碼,其實能用了內心也是理解是怎麼回事的,知識理論上說不好而已。 我覺得只要理解一個事情就好了,ioc所謂 ...
  • 貪吃蛇游戲截圖: 首先安裝pygame,可以使用pip安裝pygame: pip install pygame 運行以下代碼即可: 操作方法: 上下左右鍵或wsad鍵控制 ESC鍵退出游戲 下載代碼:http://files.cnblogs.com/files/qiu2013/snake.zip 游 ...
  • **晚上在公司的論壇上看到一道面試題,題目如下:隨機給定一字元串和字元,要求重排,比如:’abde’,’c’。重排之後變成’abcde’ **看到他們給的答案很多都是二分法重排,既然是字元類的處理,當然可以用ASCII碼表對應的數字來處理了,所以在這裡簡單的寫一種方法出來,代碼如下: **測試步驟: ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...