您好,登錄后才能下訂單哦!
Spring Boot中默認帶了error的映射,但是這個錯誤頁面顯示給用戶并不是很友好。
統(tǒng)一異常處理
通過使用@ControllerAdvice定義統(tǒng)一異常處理的類,而不是在每個Controller中逐個定義。
@ExceptionHandler用來定義函數(shù)針對的函數(shù)類型,最后將Exception對象和請求URL映射到URL中。
@ControllerAdvice class ExceptionTranslator { public static final String DEFAULT_ERROR_VIEW = "error"; @ExceptionHandler(value = Exception.class) public ModelAndView defaultErrorHandler(HttpServletRequest req, Exception e) throws Exception { ModelAndView mav = new ModelAndView(); mav.addObject("exception", e); mav.addObject("url", req.getRequestURL()); mav.setViewName(DEFAULT_ERROR_VIEW); return mav; } }
實現(xiàn)error.html頁面展示
在templates目錄下創(chuàng)建error.html。
例如:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8" /> <title>統(tǒng)一異常處理</title> </head> <body> <h2>Error Handler</h2> <div th:text="${url}"></div> <div th:text="${exception.message}"></div> </body> </html>
返回使用Json格式
只需在@ExceptionHandler之后加入@ResponseBody,就能讓處理函數(shù)return的內(nèi)容轉(zhuǎn)換為JSON格式
創(chuàng)建一個JSON返回對象,如:
public class ErrorDTO implements Serializable { private static final long serialVersionUID = 1L; private final String message; private final String description; private List<FieldErrorDTO> fieldErrors; //getter和setter省略 }
可以為指定的Exception添加異常處理
@ExceptionHandler(ConcurrencyFailureException.class) @ResponseStatus(HttpStatus.CONFLICT) @ResponseBody public ErrorDTO processConcurencyError(ConcurrencyFailureException ex) { return new ErrorDTO(ErrorConstants.ERR_CONCURRENCY_FAILURE); }
ErrorConstants.ERR_CONCURRENCY_FAILURE 是定義的一個異常信息。
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作能帶來一定的幫助,如果有疑問大家可以留言交流。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。