Java SpringMVC異常處理機制詳解

異常處理的思路

在這裡插入圖片描述

測試環境準備

首先寫一個DemoController控制層的類作為測試訪問的控制器

package com.itheima.controller;
import com.itheima.exception.MyException;
import com.itheima.service.DemoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import java.io.FileNotFoundException;
@Controller
public class DemoController {
    @Autowired
    private DemoService demoService;
    @RequestMapping(value="/show")
    public String show() throws FileNotFoundException, MyException {
        System.out.println("show running");
        demoService.show1();
//        demoService.show2();
//        demoService.show3();
//        demoService.show4();
//        demoService.show5();
        return "index";
    }
}

然後在service中寫上接口DemoService和實現類DemoServiceImpl

package com.itheima.service;
import com.itheima.exception.MyException;
import java.io.FileNotFoundException;
public interface DemoService {
    public void show1();
    public void show2();
    public void show3() throws FileNotFoundException;
    public void show4();
    public void show5() throws MyException;
}
package com.itheima.service.impl;
import com.itheima.exception.MyException;
import com.itheima.service.DemoService;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
public class DemoServiceImpl implements DemoService {
    public void show1() {
        System.out.println("類型轉換異常");
        Object str = "zhangsan";
        Integer num = (Integer) str;
    }
    public void show2() {
        System.out.println("拋出除零異常");
        int i = 1 / 0;
    }
    public void show3() throws FileNotFoundException {
        System.out.println("文件找不到異常");
        InputStream in = new FileInputStream("C:/xxx/xxx/xxx.txt");
    }
    public void show4() {
        System.out.println("空指針異常");
        String str = null;
        str.length();
    }
    public void show5() throws MyException {
        System.out.println("自定義異常");
        throw new MyException();
    }
}

其中的MyException是自定義異常,被聲明在itheima的另一個包下,此時還未任何實現:

在這裡插入圖片描述

訪問一下/show,因為先調用的show1方法,所以會報類型轉換異常:

在這裡插入圖片描述

環境準備完畢。

異常處理兩種方式

在這裡插入圖片描述

方式一:簡單異常處理器

在這裡插入圖片描述

方式一很簡單,去做對應的配置文件配置就可以瞭:

<!--配置異常處理器-->
    <bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
        <!--如果下面全都對不上,就會采用這個默認的defaultErrorView所對應的value值的視圖-->
        <property name="defaultErrorView" value="error"></property>
        <property name="exceptionMappings">
            <map>
                <!--類型轉換異常,拋瞭什麼異常,就會跳轉到value值對應的字符串顯示的頁面-->
                <entry key="java.lang.ClassCastException" value="error"></entry>
                <!--自定義異常-->
                <entry key="com.itheima.exception.MyException" value="error"></entry>
            </map>
        </property>
    </bean>

然後再進行訪問,可以看到跳轉到瞭error視圖:

在這裡插入圖片描述

方式二:自定義異常處理器

步驟;

1、創建異常處理器類實現HandlerExceptionResolver

2、配置異常處理器

3、編寫異常頁面

4、測試異常跳轉

演示;

第一步:創建異常處理器類實現HandlerExceptionResolver

package com.itheima.resolver;
import com.itheima.exception.MyException;
import org.springframework.web.servlet.HandlerExceptionResolver;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class MyExceptionResolver implements HandlerExceptionResolver {
    /*這是HandlerExceptionResolver中必須要實現的方法
      參數Exception:異常對象
      返回值ModelAndView:跳轉到錯誤視圖信息
     */
    public ModelAndView resolveException(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) {
        ModelAndView md = new ModelAndView();
        /*
        這裡隻是大致做一個代碼邏輯的演示
        實際開發當中並不會這樣寫,沒什麼意義
        下面的演示隻是可以告訴我們可以在這個方法裡面進行異常信息的判斷
         */
        if(e instanceof MyException){
            md.addObject("info","自定義異常");
        }else if(e instanceof ClassCastException){
            md.addObject("info","類型轉換異常");
        }
        md.setViewName("error");
        return md;
    }
}

第二步:在SpringMVC的配置文件當中配置異常處理器

 <!--自定義異常處理器-->
    <bean class="com.itheima.resolver.MyExceptionResolver"></bean>

測試訪問就行瞭。

總結

在這裡插入圖片描述

本篇文章就到這裡瞭,希望能夠給你帶來幫助,也希望您能夠多多關註WalkonNet的更多內容!

推薦閱讀: