1,对于404,500这类错误,可以直接新建public/error目录 ,在error目录 中新建404.html, 500.html或5xx.html,springboot会自动跳转到这些静态页面. 2,如果想记录错误信息,可以通过专门的类来处理.通过@ControllerAdvice注解 @ControllerAdvicepublic class ErrorControllerAdvice { @ExceptionHandler(Exception.class) public void h…