Exception

作者: MisAutumn | 来源:发表于2018-05-27 12:09 被阅读11次

    RuntimeException

    public class UserNotFoundException extends RuntimeException {
        public UserNotFoundException(String message) {
            super(message);
        }
    }
    

    @ControllerAdvice 全局处理exception,错误的情况返回500
    如果单使用@ExceptionHandler,只能在当前Controller中处理异常。但当配合@ControllerAdvice一起使用的时候,就可以摆脱那个限制了。

    // for all exceptions
    HttpStatus.INTERNAL_SERVER_ERROR 
    

    相关文章

      网友评论

          本文标题:Exception

          本文链接:https://www.haomeiwen.com/subject/tgrbjftx.html