美文网首页
SpringBoot 统一处理异常 500、404页面

SpringBoot 统一处理异常 500、404页面

作者: 飞鸟Lamcy | 来源:发表于2018-04-20 10:11 被阅读0次

SpringBoot在版本1.5.9的时候可用实现EmbeddedServletContainerCustomizer接口

但是在SpringBoot版本2.0.0的时候找不到EmbeddedServletContainerCustomizer接口类了

在这里,我们可以实现WebServerFactoryCustomizer来处理异常页面。

解决方法:


import org.springframework.boot.web.server.ErrorPage;

import org.springframework.boot.web.server.WebServerFactoryCustomizer;

import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;

import org.springframework.context.annotation.Configuration;

import org.springframework.http.HttpStatus;

@Configurationpublic 

class CustomizationBean implements WebServerFactoryCustomizer {

    @Override

    public void customize(ConfigurableServletWebServerFactory factory) {

        factory.addErrorPages(new ErrorPage(HttpStatus.NOT_FOUND, "/404"));

        factory.addErrorPages(new ErrorPage(HttpStatus.INTERNAL_SERVER_ERROR, "/500"));

    }

}


相关文章

网友评论

      本文标题:SpringBoot 统一处理异常 500、404页面

      本文链接:https://www.haomeiwen.com/subject/pchakftx.html