SpringBoot自定义错误页面,SpringBoot 404、500错误提示页面

本文详细介绍了SpringBoot中404、500错误页面的配置方法,包括使用Thymeleaf模板和静态资源文件夹的查找规则,以及如何通过application.properties文件修改默认的映射路径。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、SpringBoot 404、500错误提示页面

1、在使用ThymeLeaf模板时,springBoot会自动到

Java代码 

src/main/resources/templates/error/  

文件夹下寻找404.htm、500.html的错误提示页面

错误提示页面的命名规则就是:错误码.html,如404是404.html,500是500.html



 

 

2、如果没有使用ThymeLeaf模板时,SpringBoot会到静态资源文件夹寻找404.htm、500.html的错误提示页面,命名同上。

SpringBoot默认的静态资源文件有:

Java代码 

/static  

 这个是生成SpringBoot项目直接有的。

还有3个隐藏的静态资源文件夹:

Java代码 

 

/resources  
/public  
/METAINF/resources/  

 

 即Springboot中默认的静态资源路径有4个,分别是:

classpath:/METAINF/resources/,

classpath:/resources/,

classpath:/static/,

classpath:/public/

优先级顺序为:META-INF/resources  >  resources  >  static  >  public

 

可以通过修改application.properties文件中的spring.mvc.static-path-pattern属性来修改默认的映射**,配置如下:

spring.mvc.static-path-pattern=/**  
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,classpath:/myfile/  

 

 二、SpringBoot 4xx.html、5xx.html错误提示页面

错误代码的类型很多,如400、403、404等等,如果按照上面的方法,需要添加很多页面而

SpringBoot提供了通用的命名方式,就是使用4xx.html、5xx.html命名,如:

4xx.html表示能匹配到400、403、404……等错误

5xx.html表示能匹配到500、501、502……等错误

 

如果404.html和4xx.html同时存在时,优先使用最匹配的,即当发生404错误时,优先匹配404.html页面

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值