springboot自定义404页面
时间: 2023-06-05 10:47:19 浏览: 152
Spring Boot自定义错误页面
5星 · 资源好评率100%
在Spring Boot中,可以通过自定义错误处理器来实现自定义404页面。具体步骤如下:
1. 创建一个自定义错误处理器类,实现ErrorController接口。
2. 在自定义错误处理器类中,重写getErrorPath()方法,返回自定义的错误页面路径。
3. 在Spring Boot配置文件中,添加如下配置:
```
server.error.path=/error
server.error.whitelabel.enabled=false
```
其中,server.error.path指定错误处理器的映射路径,server.error.whitelabel.enabled设置为false表示禁用Spring Boot默认的错误页面。
4. 在resources/static目录下,创建自定义的错误页面,例如error.html。
这样,当访问不存在的页面时,就会显示自定义的404页面了。
阅读全文