SpringBoot 的 Web项目 配置错误页面自动跳转,例如400,404,401,500...的页面

在开发SpringBoot 电商类项目的时候,一般会封装一下500,404,400等页面

就是在系统发生异常的时候只将预先准备好发生对应异常的页面暴露给用户看

从而得到较好的用户体验

具体只需要如下配置即可

package com.umbrella.web.config;

import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
import org.springframework.boot.web.servlet.ErrorPage;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpStatus;

@Configuration
public class ErrorPageConfig  {
    @Bean
    public EmbeddedServletContainerCustomizer containerCustomizer() {
        return new EmbeddedServletContainerCustomizer() {
            public void customize(ConfigurableEmbeddedServletContainer container) {
                ErrorPage error400Page = new ErrorPage(HttpStatus.BAD_REQUEST, "/error/400.htm");
                ErrorPage error401Page = new ErrorPage(HttpStatus.UNAUTHORIZED, "/error/401.htm");
                ErrorPage error404Page = new ErrorPage(HttpStatus.NOT_FOUND, "/error/404.htm");
                ErrorPage error500Page = new ErrorPage(HttpStatus.INTERNAL_SERVER_ERROR, "/error/500.htm");

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

/error/400.htm 这里就是Controller层配置的路由

猜你喜欢

转载自blog.csdn.net/umbrellasoft/article/details/82347908