91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

SpringBoot 統一異常處理

發布時間:2020-10-25 23:44:09 來源:網絡 閱讀:2089 作者:Java萌新 欄目:編程語言

SpringBoot 統一異常處理
SpringBoot 統一異常處理
異常和響應碼

因為用RESTful設計的接口, 應該用狀態碼反映請求的錯誤, 不應該統一返回200 的狀態碼, 然后再通過 msg 來描述錯誤. 所以統一異常處理比較關鍵.

異常一般分為 業務異常 和 非業務異常
SpringBoot 統一異常處理
業務異常通常返回4xx的狀態碼
非業務異常只需要返回 500 , 提示 服務器錯誤,請稍候重試
默認異常處理
SpringBoot 提供了默認的處理異常方式,當出現異常時就會默認映射到 /error。處理異常的程序在類BasicErrorController 中.
該類提供了兩種異常處理的方法 :

方法 errorHtml 用于處理瀏覽器端請求時出現的異常.
方法 error 用于處理機器客戶端請求時出現的異常。

這兩種請求的的區別在于請求頭中 Accept 的值 :

值為 text/html 時,方法 errorHtml 執行,返回 HTML 頁面。
值為 application/json 時,方法 error 執行,返回 json 數據。

errorHtml 和 error 兩個方法的源代碼

@RequestMapping(produces = "text/html")
public ModelAndView errorHtml(HttpServletRequest request,
HttpServletResponse response) {
HttpStatus status = getStatus(request);
Map<String, Object> model = Collections.unmodifiableMap(getErrorAttributes(
request, isIncludeStackTrace(request, MediaType.TEXT_HTML)));
response.setStatus(status.value());
ModelAndView modelAndView = resolveErrorView(request, response, status, model);
return (modelAndView != null) ? modelAndView : new ModelAndView("error", model);
}

@RequestMapping
@ResponseBody
public ResponseEntity&lt;Map&lt;String, Object&gt;&gt; error(HttpServletRequest request) {
    Map&lt;String, Object&gt; body = getErrorAttributes(request,
            isIncludeStackTrace(request, MediaType.ALL));
    HttpStatus status = getStatus(request);
    return new ResponseEntity&lt;&gt;(body, status);
}

瀏覽器端錯誤頁面

SpringBoot 統一異常處理

如果想自定義頁面替換這個頁面, 你只需在 /error 文件夾下添加一個表示錯誤頁面的文件。該文件可以是一個靜態的HTML,也可以使用模板。這個文件的名字應該是精確的狀態碼或者是表示一個系列的模糊名稱。如下:

src/
+- main/
+- java/
| + <source code>
+- resources/
+- public/
+- error/
| +- 404.html
+- <other public assets>

src/
+- main/
+- java/
| + <source code>
+- resources/
+- templates/
+- error/
| +- 5xx.ftl
+- <other templates>

其背后的原理在于上面提到的 errorHtml 方法。當出現異常時,該方法會查詢是否有在 error 文件夾下提供對應錯誤狀態碼的靜態資源文件,如果有則返回該文件,沒有則返回上小節講到的白色錯誤標簽頁。如果想要知道更詳細的細節請查看相關源碼。
JSON格式錯誤
當請求頭中的Accept的值為 application/json 時,就會返回 json 數據了。出現異常時,BasicErrorController 類中的 error 方法將被執行。會獲取錯誤信息然后以 Json 格式返回。如下圖:

SpringBoot 統一異常處理

自定義異常處理
下面有兩種方式自定義異常處理

對于應用級別的業務異常處理,我們可以通過注解 @ControllerAdvice 或 @RestControllerAdvice 來實現異常處理。但是上面的注解只能捕獲處理應用級別的異常,例如 Controller 中拋出自定義的異常。卻不能處理容器級別的異常,例如 Filter 中拋出的異常等。
要想處理容器級別的異常,需要繼承 BasicErrorController 類,重寫 errorHtml 和 error 方法。或者實現 ErrorController 接口,起到和類 BasicErrorController 相似的作用。

處理應用級別異常

下面是返回 JSON 格式的處理類@RestControllerAdvice
br/>@RestControllerAdvice

private static final long serialVersionUID = 1L;

@ExceptionHandler(value = MissingServletRequestParameterException.class)
@ResponseStatus(HttpStatus.BAD_REQUEST)
public R defaultErrorHandler(HttpServletRequest req, Exception e) throws Exception {
    return new R<>(null, "缺少參數");
}

}

@RestControllerAdvice 與 @ControllerAdvice +@ResponseBody 起到的作用是一樣的
注解 @ExceptionHandler 里面的 value 的類是我們捕獲的處理異常, 此類異常會被defaultErrorHandler 方法處理.

@ResponseStatus(HttpStatus.BAD_REQUEST) 注解, 指定了此異常返回的狀態碼, 因為是缺少參數, 所以返回 400 的狀態碼

R 類為一個 ResultJSON 類, 把內容封裝起來, 一般有 code, meg , data 三個屬性. 返回一個 JSON 字符串
處理容器級別的異常
@ControllerAdvice 注解的異常處理類并不能處理容器級別的異常, 我們可以通過繼承 BasicErrorController 類重寫 errorHtml 或 error 方法,以達到我們想要的返回結果。

還可以通過實現 ErrorController 接口的方法來實現自定義異常處理,BasicErrorController 類也是實現了 ErrorController 接口,因此這種方式和 BasicErrorController 類有相似作用。實現起來相對麻煩,本文只講解繼承 BasicErrorController 類的方式。

@Controller
public class CustomizeErrorController extends BasicErrorController{

public CustomizeErrorController(ErrorAttributes errorAttributes, ErrorProperties errorProperties, List<ErrorViewResolver> errorViewResolvers){
    super(errorAttributes, errorProperties, errorViewResolvers);
}

@RequestMapping(produces = {"text/html"})
public ModelAndView errorHtml(HttpServletRequest request, HttpServletResponse response) {
    HttpStatus status = this.getStatus(request);
    Map<String, Object> model = Collections.unmodifiableMap(this.getErrorAttributes(request, this.isIncludeStackTrace(request, MediaType.TEXT_HTML)));
    response.setStatus(status.value());
    ModelAndView modelAndView = this.resolveErrorView(request, response, status, model);
    return modelAndView == null ? new ModelAndView("error", model) : modelAndView;
}

@RequestMapping
@ResponseBody
public ResponseEntity<Map<String, Object>> error(HttpServletRequest request) {
    Map<String, Object> body = this.getErrorAttributes(request, this.isIncludeStackTrace(request, MediaType.ALL));
    HttpStatus status = this.getStatus(request);
    ApiResponseBody responseBody = new ApiResponseBody((int)body.get("status"), (String) body.get("error") + ": " + (String) body.get("message"));
    return new ResponseEntity(responseBody, status);
}

}

該類將會覆蓋 BasicErrorController 類起到處理異常的作用。但這里要注意,如果想要保留對SpringBoot默認的對瀏覽器請求的異常處理(也就是根據異常錯誤狀態碼返回 error 文件夾下對應的錯誤頁面),還需新建一個配置文件 CustomErrorConfiguration

@Configuration@ConditionalOnWebApplication
br/>@ConditionalOnWebApplication
br/>@AutoConfigureBefore({WebMvcAutoConfiguration.class})
public class CustomErrorConfiguration {
private final ServerProperties serverProperties;
private final List<ErrorViewResolver> errorViewResolvers;

public CustomErrorConfiguration(ServerProperties serverProperties, ObjectProvider&lt;List&lt;ErrorViewResolver&gt;&gt; errorViewResolversProvider) {
    this.serverProperties = serverProperties;
    this.errorViewResolvers = (List)errorViewResolversProvider.getIfAvailable();
}

@Bean
public CustomizeErrorController customizeErrorController(ErrorAttributes errorAttributes){
    return new CustomizeErrorController(errorAttributes, this.serverProperties.getError(),errorViewResolvers);
}

}

向AI問一下細節

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

AI

云龙县| 耒阳市| 阳山县| 云林县| 白朗县| 应城市| 布尔津县| 铅山县| 白银市| 宜章县| 塔城市| 奈曼旗| 汝南县| 余庆县| 康保县| 方正县| 隆化县| 邳州市| 松阳县| 辽阳县| 孟连| 福贡县| 广安市| 英德市| 海林市| 阿尔山市| 托克逊县| 天水市| 广元市| 潜山县| 互助| 茌平县| 吴桥县| 湄潭县| 务川| 西峡县| 吴旗县| 开化县| 广水市| 伊宁市| 类乌齐县|