您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關HandlerExceptionResolver中怎么實現全局異常捕獲,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
工程中我們不可否認的會出現異常,而且這些異常并沒有進行捕獲。經常出現的bug如空指針異常等等。在之前的項目中,如果我們沒有進行任何配置,那么容器會自動打印錯誤的信息,如果tomcat的404頁面,400頁面等等。如果我們在web.xml中進行如下配置,就會攔截錯誤,然后跳轉到指定的錯誤頁面。
<error-page> <error-code>500</error-code> <location>/500.jsp</location> </error-page>
但是這已經落后了,現在我們通過實現spring的HandlerExceptionResolver接口來捕獲所有的異常。 主要作用是,比如當我們在Web API 提供服務的時候,API自己故障了,那么在API 故障前我們可以再設定一個springboot框架自身的 異常檢測。
demo如下:
package com.demo.interceptor; import com.alibaba.fastjson.JSONObject; import com.credithc.kg.fetures.model.ResultDTO; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import org.springframework.web.servlet.HandlerExceptionResolver; import org.springframework.web.servlet.ModelAndView; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @Component @Slf4j public class MyHandlerExceptionResolver implements HandlerExceptionResolver { private ModelAndView modelAndView = new ModelAndView(); @Override public ModelAndView resolveException(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) { try { log.error("系統運行時異常:{}",e); httpServletResponse.setCharacterEncoding("UTF-8"); httpServletResponse.setContentType("application/json"); httpServletResponse.getWriter().print(JSONObject.toJSON(ResultDTO.fail("系統異常"))); } catch (IOException e1) { log.error("響應IO異常:{}",e1); } return modelAndView; } }
import lombok.Data; @Data public class ResultDTO<T> { private Integer code; private String msg; private T body; private ResultDTO(Integer code, String msg, T body) { this.code = code; this.msg = msg; this.body = body; } public static <T> ResultDTO success(T body){ return success(200,"成功",body); } public static ResultDTO success(Integer code, String msg){ return success(code,msg,null); } public static ResultDTO fail(String msg){ return success(500,msg); } public static <T> ResultDTO success(Integer code, String msg, T body){ return new ResultDTO(code,msg,body); } }
以上就是HandlerExceptionResolver中怎么實現全局異常捕獲,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。