自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

詳解Spring MVC各種異常處理方式,你確定都掌握了?

開發(fā) 前端
他們的區(qū)別其實(shí)就是Rest的注解中多了一個(gè)@ResponseBody 注解(將方法的返回值,以特定的格式寫入到response的body,進(jìn)而將數(shù)據(jù)返回給客戶端,如果是字符串直接輸出字符串信息,如果是對(duì)象將會(huì)把對(duì)象轉(zhuǎn)為json進(jìn)行輸出)。

當(dāng)程序發(fā)生異常時(shí)我們可以通過(guò)如下兩個(gè)注解來(lái)統(tǒng)一處理異常信息。

@ControllerAdvice 和 @RestControllerAdvice

他們的區(qū)別其實(shí)就是Rest的注解中多了一個(gè)@ResponseBody 注解(將方法的返回值,以特定的格式寫入到response的body,進(jìn)而將數(shù)據(jù)返回給客戶端,如果是字符串直接輸出字符串信息,如果是對(duì)象將會(huì)把對(duì)象轉(zhuǎn)為json進(jìn)行輸出)。

源碼:

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface ControllerAdvice {
}
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@ControllerAdvice
@ResponseBody
public @interface RestControllerAdvice {
}

方式一、Controller內(nèi)部處理異常

@RestController
public class TestController {  
  @GetMapping("/test/{id}")
  public Object test(@PathVariable Integer id) {
    if (id < 5) {
      throw new RuntimeException("運(yùn)行時(shí)異常") ;
    }
    return "測(cè)試異常處理" ;
  }
  
  @ExceptionHandler
  public Object handle(Exception e) {
    return e.getMessage() ;
  }


}

這樣如果這個(gè)Controller中的接口發(fā)生了異常那么就會(huì)執(zhí)行有@ExceptionHandler標(biāo)注的方法。

該種方式處理異常只是針對(duì)當(dāng)前Controller,一個(gè)項(xiàng)目肯定會(huì)有很多的Controller,如果每一個(gè)類都這樣處理明顯是太麻煩,而且還不方便統(tǒng)一異常的處理。

方式二、全局異常處理

可以在一個(gè)類上添加 @RestControllerAdvice或@ControlerAdvice

@RestControllerAdvice
public class TestControllerAdvice {
  @ExceptionHandler
  public Object handle(Exception e) {
    return "我是全局異常:" + e.getMessage() ;
  }  
}

到此全局異常的使用方式就結(jié)束了當(dāng)你訪問(wèn)接口時(shí)你會(huì)發(fā)現(xiàn)全局異常沒(méi)有起作用。

當(dāng)我們把controller中的@ExceptionHandler注釋了,這時(shí)全局異常才會(huì)生效。

結(jié)論:局部異常處理優(yōu)先級(jí)高于全局異常處理。

以上是項(xiàng)目中如果使用異常處理句柄的方式;接下來(lái)我們來(lái)看看在全局異常處理句柄中如何進(jìn)行局部控制(比如只處理有特定注解的或是只處理部分controller又或者是指定包下的controller)。

1、只處理特定注解

自定義Annotation:

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface AppAnnotation {


}

Controller類:

有@AppAnnotation注解的Controller

@AppAnnotation
@RestController
public class AnnotationController {


  @GetMapping("/an/get/{id}")
  public Object an(@PathVariable Integer id) {
    if (id < 10) {
      throw new RuntimeException("發(fā)生錯(cuò)誤了") ;
    }
    return "自定義Annotation注解: " + id ;
  }
  
}

沒(méi)有@AppAnnotation注解的Controller

@RestController
public class AnnotationController2 {
  
  @GetMapping("/an/get2/{id}")
  public Object an(@PathVariable Integer id) {
    if (id < 10) {
      throw new RuntimeException("2發(fā)生錯(cuò)誤了") ;
    }
    return "自定義Annotation注解2: " + id ;
  }
}

ControllerAdvice異常處理類:

@RestControllerAdvice(annotations = {AppAnnotation.class})
public class AnnotationControllerAdvice {
  
  @ExceptionHandler
  public Object handle(Exception e) {
    return "特定注解全局異常:" + e.getMessage() ;
  }
  
}

分別訪問(wèn)/an/get/1 和/an/get2/1接口,只有有@AppAnnotation注解的Controller會(huì)被處理。

2、只處理指定的Controller

新建UserController

@RestController
public class UserController {
    
  @GetMapping("/user/{id}")
  public Object get(@PathVariable Integer id) {
    if (id < 10) {
      throw new RuntimeException("用戶ID錯(cuò)誤") ;
    }
    return "Users" ;
  }
  
}

新建PersonController

@RestController
public class PersonController {
  
  
  @GetMapping("/person/{id}")


  public Object get(@PathVariable Integer id) {
    if (id < 10) {      throw new RuntimeException("Person ID錯(cuò)誤") ;
    }
    return "Person" ;
  }
  
}

全局異常處理類:

@RestControllerAdvice(assignableTypes = {UserController.class})
public class SpecificControllerAdvice {
  
  @ExceptionHandler
  public Object handle(Exception e) {
    return "指定Controller全局異常:" + e.getMessage() ;
  }
  
}

這里通過(guò)assignableTypes屬性來(lái)限定了只有UserController類發(fā)生了異常才會(huì)做出響應(yīng)。

PersonController發(fā)生異常不會(huì)被處理。

3、指定包下的Controller

@RestControllerAdvice(basePackages = {"com.pack.pkg1"})
public class PackageControllerAdvice {
  
  @ExceptionHandler
  public Object handle(Exception e) {
    return "指定包下的全局異常:" + e.getMessage() ;
  }
  
}

UserController類位于pkg1包下:

package com.pack.pkg1;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;
@RestController("userPController")
public class UserController {
  @GetMapping("/userp/{id}")
  public Object get(@PathVariable Integer id) {
    if (id < 10) {
      throw new RuntimeException("用戶ID錯(cuò)誤") ;
    }
    return "Users" ;
  }
}

PersonController類位于pkg2包下:

package com.pack.pkg2;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;
@RestController("personPController")
public class PersonController {
  @GetMapping("/personp/{id}")
  public Object get(@PathVariable Integer id) {
    if (id < 10) {
      throw new RuntimeException("Person ID錯(cuò)誤") ;
    }


    return "Person" ;
  }
}

當(dāng)訪問(wèn)com.pack.pkg1包下的接口出現(xiàn)異常后就會(huì)被處理。

到此結(jié)束

關(guān)于@ExceptionHandler 方法句柄可接受的參數(shù)及返回值大家可參考這里

接受的參數(shù)類型接受的參數(shù)類型

圖片圖片

責(zé)任編輯:武曉燕 來(lái)源: Spring全家桶實(shí)戰(zhàn)案例源碼
相關(guān)推薦

2023-07-10 08:00:13

架構(gòu)Rest返回值

2010-02-24 12:41:58

WCF異常處理

2023-09-29 11:29:12

Spring異常處理類

2021-03-31 09:11:27

URLErrorHTTPError

2011-05-24 09:22:44

Spring3異常處理

2024-12-18 16:19:51

2023-02-23 08:15:33

Spring異常處理機(jī)制

2010-01-13 17:23:36

VB.NET動(dòng)態(tài)事件

2025-01-26 00:00:25

限流組件HTTP

2018-08-14 13:26:07

異常設(shè)計(jì)斷網(wǎng)

2017-10-10 15:30:20

JavaScript

2009-12-31 14:25:19

Silverlight

2017-04-17 10:05:51

Hadoop錯(cuò)誤方式

2015-11-10 09:34:58

JavaScript方式

2021-05-11 10:12:06

CIO軟件開發(fā)首席信息官

2010-01-18 16:58:29

VB.NET Over

2022-03-07 14:39:01

前端框架批處理

2009-07-21 15:47:35

JDBC批處理

2023-10-08 20:31:18

React

2021-04-30 07:34:01

Spring BootController項(xiàng)目
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)