如果訪問了錯誤的路徑,或者後台報錯
如果沒有乙個統一的頁面!
或者說頁面上展示一堆報錯資訊,既影響美觀,又對使用者不友好!
那麼如何配置?
定義 errorpageconfig,配置錯誤狀態與對應訪問路徑
@component
public class errorpageconfig implemefgicqmtjnts errorpageregistrar
}定義控制器,專門用於errorpageconfig 跳轉路徑
@controller
@requestmapping("/error")
public class errorcontroller
/*** 500頁面
*/@getmapping(value = "/500")
public string error_500()
}在comm資料夾 下新建頁面
訪問不存在的位址,或者後台報錯,即可展示友好頁面
參考鏈結找不到了。
感謝:其實,還有bug。
本文標題: spring boot 錯誤頁面配置解決方案
本文位址:
SpringBoot定製錯誤頁面
1 有模板引擎的情況下,例如404錯誤,將會在thymeleaf的templates的error下尋找404.html,如果找不到再尋找4xx.html 所有4開頭的錯誤狀態碼如果找不到特定的html頁面將會指向4xx.html 頁面可以獲取到的資訊 timestamp 時間戳 status 狀態碼...
SpringBoot定製錯誤頁面和錯誤資料
直接丟擲異常,那麼瀏覽器是便會訪問錯誤頁面 public string error model model lang en charset utf 8 titletitle head 55555555555 5xx.html body html timestamp 時間戳 status 狀態碼 er...
springboot自定義錯誤頁面
controller public class baseerrorcontroller implements errorcontroller public string error 方法二 新增自定義的錯誤頁面2.1 html靜態頁面 在resources public error 下定義 如新增4...