springboot自定义错误页面

Posted 城南少年与猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot自定义错误页面相关的知识,希望对你有一定的参考价值。

springboot自定义错误页面

1.加入配置:

@Bean
    public EmbeddedServletContainerCustomizer containerCustomizer() {

        return (container -> {
            ErrorPage error401Page = new ErrorPage(HttpStatus.UNAUTHORIZED, "/401.html");
            ErrorPage error404Page = new ErrorPage(HttpStatus.NOT_FOUND, "/404.html");
            ErrorPage error500Page = new ErrorPage(HttpStatus.INTERNAL_SERVER_ERROR, "/500.html");

            container.addErrorPages(error401Page, error404Page, error500Page);
        });
    }

2.把401.html等放在sattic文件夹下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>404</title>
</head>
<body>
<h2>这是一个自定义的错误页面!</h2>
</body>
</html>

这样404页面就会被换为自定义的页面了.

以上是关于springboot自定义错误页面的主要内容,如果未能解决你的问题,请参考以下文章

springboot自定义错误页

springboot实现自定义的错误页面展示

SpringBoot中自定义错误页面

SpringBoot Security 整合thymeleaf模板自定义登录页面,按需提示错误信息

springboot2.0自适应效果错误响应

SpringBoot: 11.异常处理方式1(自定义异常页面)(转)