统一异常处理 配置类

当用户身份认证失败时,会抛出UnauthorizedException,我们可以通过统一异常处理来处理该异常

@RestControllerAdvice
public class UserExceptionHandler {

   @ExceptionHandler(UnauthorizedException.class)
   @ResponseStatus(HttpStatus.UNAUTHORIZED)
   public ServerResponseVO UnAuthorizedExceptionHandler(UnauthorizedException e) {
       return ServerResponseVO.error(ServerResponseEnum.UNAUTHORIZED);
  }
}

 

上一篇:关于微信开发模式创建菜单失败 errcode:48001 errmsg:api unauthorized hint: [9U7bga0176vr44!]的解释


下一篇:Angr包含什么