中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot怎么自定義404、500錯誤提示頁面

發布時間:2021-11-29 09:17:23 來源:億速云 閱讀:550 作者:iii 欄目:開發技術

本篇內容介紹了“springboot怎么自定義404、500錯誤提示頁面”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

    springboot 默認的異常處理機制

    springboot 默認已經提供了一套處理異常的機制。一旦程序中出現了異常 springboot 會向 /errorurl 發送請求。在 springboot 中提供了一個名為 BasicErrorController 的類來處理 /error 請求,然后跳轉到默認顯示異常的頁面來展示異常信息

    使用模板引擎

    在使用 thymeleaf 等模板引擎時,springboot 會自動到 src/main/resources/templates/error/,文件夾下尋找 404.html、500.html 的錯誤提示頁面

    錯誤提示頁面的命名規則就是:錯誤碼.html,如 404404.html500500.html

    使用示例

    創建 springboot 項目如下

    404、500 錯誤提示頁面結構如下

    springboot怎么自定義404、500錯誤提示頁面

    application.properties 項目配置文件

    server.port=8080
    
    #它的默認值就是classpath:/templates/,源碼在ThymeleafProperties類中
    spring.mvc.view.prefix=classpath:/templates/
    #它的默認值就是.html,源碼在ThymeleafProperties類中
    spring.mvc.view.suffix=.html
    spring.thymeleaf.cache=false

    404 頁面內容如下

    <!DOCTYPE html>
    <html lang="en" xmlns:th="http://www.thymeleaf.org">
    <head>
        <meta charset="UTF-8">
        <title>404</title>
        <link rel="shortcut icon" type="image/x-icon" th:href="@{/img/favicon.ico}" rel="external nofollow"  rel="external nofollow" />
        <link rel="stylesheet" type="text/css" th:href="@{/css/404.css}" rel="external nofollow" />
    </head>
    <body>
    	<div id="banner" ></div>
    </body>
    </html>

    500 頁面內容如下

    <!DOCTYPE html>
    <html lang="en" xmlns:th="http://www.thymeleaf.org">
    <head>
        <meta charset="UTF-8">
        <title>500</title>
        <link rel="shortcut icon" type="image/x-icon" th:href="@{/img/favicon.ico}" rel="external nofollow"  rel="external nofollow" />
        <link rel="stylesheet" type="text/css" th:href="@{/css/500.css}" rel="external nofollow" />
    </head>
    <body>
        <div id="banner" ></div>
    </body>
    </html>

    controller 如下

    @Controller
    public class PageController {
    
        // 跳轉到登錄頁
        @GetMapping(path = "/toLogin")
        public String toLogin() {
            int code = 1/0;
            return "login";
        }
    }

    404.html 頁面測試

    訪問不存在的接口:http://localhost:8080/aaaa,結果如下

    springboot怎么自定義404、500錯誤提示頁面

    500.html 頁面測試

    訪問已存在的接口:http://localhost:8080/toLogin,結果如下

    springboot怎么自定義404、500錯誤提示頁面

    沒有使用模板引擎

    如果沒有使用 thymeleaf 等模板引擎時,springboot 會到靜態資源文件夾尋找 404.htm、500.html的錯誤提示頁面,命名同上。springboot 中默認的靜態資源路徑有 4 個,分別是

    • classpath:/METAINF/resources/

    • classpath:/resources/

    • classpath:/static/

    • classpath:/public/

    優先級順序為:META-INF/resources > resources > static > public,以上 4 種路徑創建 error 文件夾,再創建 404、500 錯誤提示頁面如下

    springboot怎么自定義404、500錯誤提示頁面

    不用寫額外的映射器,就能直接請求到

    “springboot怎么自定義404、500錯誤提示頁面”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    沅陵县| 台安县| 汉阴县| 汝阳县| 莱西市| 建始县| 宿州市| 铜陵市| 晋中市| 祁连县| 高州市| 女性| 赤水市| 瑞金市| 共和县| 五大连池市| 延寿县| 宜城市| 新竹市| 新邵县| 子长县| 长阳| 衡阳县| 红桥区| 错那县| 娄烦县| 恩平市| 平潭县| 南昌市| 万荣县| 屏东县| 含山县| 唐海县| 固安县| 聂拉木县| 衡山县| 芮城县| 广南县| 班戈县| 湖北省| 漾濞|