SpringBoot自定义错误页面 与 全局异常处理

Springboot中需要自定义错误页面:

一、使用Springboot默认的配置

       1、在templates下穿件一个目录:error

       2、在error目录下创建相应的对应的文件即可,如:400.html;   500.html

二、自定义错误页面配置;

         首先,在我们的Spring Boot项目目录/src/main/resources/static下新建自定义错误页面404.html,具体代码如下:




    
    404页面


我累了,让我休息一会!

其次,在我们的Spring Boot项目目录/src/main/java/com/example/text下新建包error,并在包error下新建ErrorPageConfig配置类,具体代码如下:

@Configuration
public class ErrorPageConfig implements ErrorPageRegistrar {

    @Override
    public void registerErrorPages(ErrorPageRegistry registry) {
        ErrorPage error404Page = new ErrorPage(HttpStatus.NOT_FOUND, "/404.html");
        registry.addErrorPages(error404Page);
    }
}

重启项目,在浏览器上输入错误的链接,会出现如下自定义错误页面。

 

 

你可能感兴趣的:(Java,SpringBoot)