Thymeleaf + Spring Boot: Error Page
问题 I have a basic SpringBoot app. using Spring Initializer, embedded Tomcat, Thymeleaf template engine, and package as an executable JAR file I want to redirect all the application Errors to a common page. I've created this controller: @Controller public class AppErrorController implements ErrorController { /** * Error Attributes in the Application */ private ErrorAttributes errorAttributes; private final static String ERROR_PATH = "/error"; /** * Controller for the Error Controller * @param