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"));
}
}