SpringMVC配置全局异常(Exception)
@ControllerAdvice public class ErrorHandler { @ExceptionHandler(Exception.class) String handleException(Exception e){ return "404.html"; } }
@ControllerAdvice public class ErrorHandler { @ExceptionHandler(Exception.class) String handleException(Exception e){ return "404.html"; } }