Spring boot定製錯誤資料攜帶出去
定製錯誤資料
Spring boot出現錯誤以後,會來到/error請求
會被BasicErrorController處理,自適應返回
瀏覽器訪問,返回頁面
客戶端訪問,返回json
getErrorAttributes
獲取返回的響應資料
在AbstractErrorController中定義
BasicErrorController的父類
BasicErrorController
處理Error請求,預設配置
@ConditionalOnMissingBean
建立條件
當容器中,沒有ErrorController元件的時候
才會,建立預設的錯誤處理元件BasicErrorController
解決方法
1、完全來編寫一個ErrorController的實現類
或者編寫AbstractErrorController的子類,放在容器中
2、頁面上能用的資料,或者是json返回能用的資料
都是通過errorAttributes.getErrorAttributes得到
getErrorAttributes
呼叫errorAttributes.getErrorAttributes
errorAttributes
@ConditionalOnMissingBean
建立條件
當容器中,沒有ErrorAttributes元件的時候
才會,建立一個預設的DefaultErrorAttributes
DefaultErrorAttributes.getErrorAttributes
預設進行資料處理
自定義ErrorAttributes
為了簡單,繼承DefaultErrorAttributes
注入到容器中,重寫getErrorAttributes方法
獲取父類的Map,然後,在Map中追加
自定義的錯誤資訊
//給容器中加入我們自己定義的ErrorAttributes
@Component
public class MyErrorAttributes extends DefaultErrorAttributes {
//返回值的map就是頁面和json能獲取的所有欄位
@Override
public Map<String, Object> getErrorAttributes(RequestAttributes requestAttributes, boolean includeStackTrace) {
Map<String, Object> map = super.getErrorAttributes(requestAttributes, includeStackTrace);
map.put("company","atguigu");
//我們的異常處理器攜帶的資料
Map<String,Object> ext = (Map<String, Object>) requestAttributes.getAttribute("ext", 0);
map.put("ext",ext);
return map;
}
}
MyExceptionHandler
異常處理器
輸出自定義異常的錯誤資訊
可以將map,放在request請求域中
MyErrorAttributes
在request請求域中,獲取ext屬性
Ext,表示在異常處理器中,攜帶的資料
然後,追加到map中
最終效果
響應是自適應的
可以通過定製ErrorAttributes,改變需要返回的內容