From 9f62720587d7efc656f33c4301c6b5d897e60703 Mon Sep 17 00:00:00 2001 From: lyfO_o <764716047@qq.com> Date: 星期一, 04 七月 2022 18:01:09 +0800 Subject: [PATCH] 调整 --- safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java | 44 +++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 43 insertions(+), 1 deletions(-) diff --git a/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java b/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java index a8493d2..d145f4d 100644 --- a/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java +++ b/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java @@ -7,6 +7,9 @@ import com.gkhy.safePlatform.commons.vo.ResultVO; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.springframework.security.access.AccessDeniedException; +import org.springframework.security.core.AuthenticationException; +import org.springframework.web.HttpRequestMethodNotSupportedException; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseBody; @@ -35,7 +38,46 @@ @ExceptionHandler(value = BusinessException.class) public ResultVO AHandler(BusinessException e) { logger.warn(e.getMessage()); - return new ResultVO(e.getError()); + return new ResultVO(e.getCode(),e.getMessage()); + } + + + /** + * @Description: AuthenticationException + */ + + @ResponseBody + @ExceptionHandler(value = AuthenticationException.class) + public ResultVO CHandler(AuthenticationException e) { + logger.warn(e.getMessage()); + return new ResultVO(ResultCodes.CLIENT_PERMISSION_NOT_ALLOW); + } + + + /** + * @Description: AuthenticationException + */ + + @ResponseBody + @ExceptionHandler(value = AccessDeniedException.class) + public ResultVO DHandler(AccessDeniedException e) { + logger.warn(e.getMessage()); + return new ResultVO(ResultCodes.CLIENT_PERMISSION_NOT_ALLOW); + + } + + + /** + * @Description: 请求方法 + */ + @ResponseBody + @ExceptionHandler(value = HttpRequestMethodNotSupportedException.class) + public ResultVO DHandler(HttpRequestMethodNotSupportedException e) { + ResultVO resultVO = new ResultVO(); + resultVO.setCode(ResultCodes.CLIENT_METHOD_NOT_MATCH.getCode()); + resultVO.setMsg(e.getMessage()); + return resultVO; + } /** -- Gitblit v1.9.2