springboot ErrorController

hzhxxxx發表於2020-10-09


在編寫springboot專案的時候,後端操作經常會丟擲異常,而這些異常是前端無法顯示的,所以我們還需切換到後端命令列才能看到具體的錯誤細節,非常麻煩,尤其是將專案部署到伺服器上的時候,未解決這個問題,我們可以通過實現ErrorController介面,來在前端顯示報錯資訊。

CommonErrorController

程式碼:

package com.example.commonerror.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.web.servlet.error.ErrorAttributes;
import org.springframework.boot.web.servlet.error.ErrorController;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.context.request.WebRequest;

import javax.servlet.http.HttpServletRequest;
import java.util.Map;

@RestController
public class CommonErrorController implements ErrorController {

    @Autowired
    private ErrorAttributes errorAttributes;

    /**
     * 預設錯誤
     */
    private static final String path_default = "/error";

    @Override
    public String getErrorPath() {
        return path_default;
    }

    /**
     * JSON格式錯誤資訊
     */
    @RequestMapping(value = path_default,  produces = {MediaType.APPLICATION_JSON_VALUE})
    public String error(HttpServletRequest request, WebRequest webRequest) {
        Map<String, Object> body = this.errorAttributes.getErrorAttributes(webRequest, true);
        return body.toString();
    }

}

測試

測試程式碼

package com.example.commonerror.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {
    @GetMapping("/test")
    public String test(){
        return "test";
    }

    @GetMapping("/test1")
    public String test1(){
        throw new RuntimeException("丟擲異常");
    }
}

測試結果

不報錯的執行

在這裡插入圖片描述

報錯的執行

在這裡插入圖片描述

原始碼

專案原始碼

相關文章