SpringBoot 404 500錯誤提示頁面

2021-09-25 20:04:30 字數 696 閱讀 4931

springboot 404、500錯誤提示頁面

一. 在使用thymeleaf模板時,springboot會自動到src/main/resources/templates/error/資料夾下尋找404.html、500.html的錯誤提示頁面。錯誤提示頁面的命名規則就是:錯誤碼.html,如404是404.html,500是500.html。

二. 如果沒有使用thymeleaf模板時,springboot會到靜態資源資料夾尋找404.html、500.html的錯誤提示頁面,命名同上。springboot預設的靜態資源檔案有:

src/main/resources/static

src/main/resources/resources

src/main/resources/public

src/main/resources/metainf/resources

優先順序順序為:meta-inf/resources  >  resources  >  static  >  public

spring boot 傳送郵件

簡單幾步,實現在spring boot中傳送郵件 1 引入依賴 org.springframework.boot spring boot starter mail spring mail host smtp.exmail.qq.com username 使用者名稱 password 密碼 prope...

spring boot 學習筆記

spring boot 學習筆記 1.有時候我們在專案啟動的時候,總是需要先啟動一些初始化的類,以前比較常見的做法是寫再static塊中,spring boot提供了乙個commandlinerunner介面,實現這個介面的類總是會被優先啟動,並優先執行commandlinerunner介面中提供的...

SpringBoot獲取properties配置

前言 在專案中,很多時候需要把配置寫在properties裡,部署的時候也需要切換不同的環境來選擇正確的配置的引數,也有時候需要將mq redis等第三方配置新建乙個properties檔案在專案中引用。1.因為是spring的環境,當然首先需要搭建好spring環境。package com.exa...