Closed
Description
in sample code:
@Bean
public EmbeddedServletContainerFactory servletContainer() {
TomcatEmbeddedServletContainerFactory factory = new TomcatEmbeddedServletContainerFactory();
factory.setPort(9000);
factory.setSessionTimeout(10, TimeUnit.MINUTES);
factory.addErrorPages(new ErrorPage(HttpStatus.404, "/notfound.html");
return factory;
}
the line
factory.addErrorPages(new ErrorPage(HttpStatus.404, "/notfound.html");
should be
factory.addErrorPages(new ErrorPage(HttpStatus.NOT_FOUND, "/notfound.html"));