SpringMVC配置全局异常(Exception)

@ControllerAdvice
public class ErrorHandler {
    
    @ExceptionHandler(Exception.class)
    String handleException(Exception e){
        return "404.html";
    }

}

 

posted @ 2019-02-24 11:18  HWll  阅读(538)  评论(0)    收藏  举报