中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot全局異常處理詳解

發布時間:2020-09-19 11:43:37 來源:腳本之家 閱讀:177 作者:趙計剛 欄目:編程語言

一、單個controller范圍的異常處理

package com.xxx.secondboot.web;

import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import com.xxx.secondboot.exception.MyExceptionResponse;

import io.swagger.annotations.Api;

@Api("測試controllerAdvice和全局異常處理")
@RestController
@RequestMapping("/advice1")
public class AdviceController {

  @RequestMapping(value = "/test1", method = RequestMethod.GET)
  public String test1() {
    throw new RuntimeException("advice1 - exception1");
  }

  @RequestMapping(value = "/test2", method = RequestMethod.GET)
  public String test2() {
    throw new RuntimeException("advice1 - exception2");
  }

  @ExceptionHandler(RuntimeException.class)
  public MyExceptionResponse exceptionHandler() {
    MyExceptionResponse resp = new MyExceptionResponse();
    resp.setCode(300);
    resp.setMsg("exception-Handler");
    return resp;
  }

}

說明:

  1. 在controller中加入被@ExceptionHandler修飾的類即可(在該注解中指定該方法需要處理的那些異常類)
  2. 該異常處理方法只在當前的controller中起作用

二、全部controller范圍內起作用的異常處理(全局異常處理)

1、全局異常處理類

package com.xxx.secondboot.web;

import javax.servlet.http.HttpServletResponse;

import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

import com.xxx.secondboot.exception.MyExceptionResponse;
import com.xxx.secondboot.exception.MyRuntimeException;

//@ControllerAdvice(annotations=RestController.class)
//@ControllerAdvice(basePackages={"com.xxx","com.ooo"})
@ControllerAdvice
public class GlobalExceptionHandler {
  @ExceptionHandler(RuntimeException.class)
  //  @ExceptionHandler(value={RuntimeException.class,MyRuntimeException.class})
  //  @ExceptionHandler//處理所有異常
  @ResponseBody //在返回自定義相應類的情況下必須有,這是@ControllerAdvice注解的規定
  public MyExceptionResponse exceptionHandler(RuntimeException e, HttpServletResponse response) {
    MyExceptionResponse resp = new MyExceptionResponse();
    resp.setCode(300);
    resp.setMsg("exception-Handler");
    //    response.setStatus(600);
    return resp;
  }
}

說明:

  1. @ControllerAdvice是controller的一個輔助類,最常用的就是作為全局異常處理的切面類
  2. @ControllerAdvice可以指定掃描范圍
  3. @ControllerAdvice約定了幾種可行的返回值,如果是直接返回model類的話,需要使用@ResponseBody進行json轉換
    1. 返回String,表示跳到某個view
    2. 返回modelAndView
    3. 返回model + @ResponseBody

2、controller

package com.xxx.secondboot.web;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import io.swagger.annotations.Api;

@Api("測試controllerAdvice和全局異常處理")
@RestController
@RequestMapping("/advice1")
public class AdviceController {

  @RequestMapping(value = "/test1", method = RequestMethod.GET)
  public String test1() {
    throw new RuntimeException("advice1 - exception1");
  }

  @RequestMapping(value = "/test2", method = RequestMethod.GET)
  public String test2() {
    throw new RuntimeException("advice1 - exception2");
  }

  //  @ExceptionHandler(RuntimeException.class)
  //  public MyExceptionResponse exceptionHandler() {
  //    MyExceptionResponse resp = new MyExceptionResponse();
  //    resp.setCode(300);
  //    resp.setMsg("exception-Handler");
  //    return resp;
  //  }

}

注意:

  1. 同一個異常被局部范圍異常處理器和全局范圍異常處理器同時覆蓋,會選擇小范圍的局部范圍處理器
  2. 同一個異常被小范圍的異常類和大范圍的異常處理器同時覆蓋,會選擇小范圍的異常處理器

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

开原市| 桓台县| 博野县| 雷山县| 金乡县| 文化| 黔江区| 眉山市| 中山市| 卓资县| 新龙县| 武平县| 丰原市| 揭阳市| 宁陕县| 勃利县| 新野县| 贵南县| 抚顺县| 临清市| 桂阳县| 九寨沟县| 克什克腾旗| 蒙山县| 夹江县| 台山市| 新丰县| 惠水县| 新化县| 芜湖市| 大田县| 新干县| 汪清县| 赤城县| 澄城县| 蒲城县| 徐闻县| 清河县| 绵竹市| 长子县| 湄潭县|