SpringBoot 404、500错误提示页面

SpringBoot 404、500错误提示页面

一. 在使用ThymeLeaf模板时,SpringBoot会自动到src/main/resources/templates/error/ 文件夹下寻找404.html、500.html的错误提示页面。错误提示页面的命名规则就是:错误码.html,如404是404.html,500是500.html。

SpringBoot 404、500错误提示页面_第1张图片

二. 如果没有使用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

 

你可能感兴趣的:(thymeleaf)