From 108ed1c548b7dc17ce47dcadea80e4c42a2f29e7 Mon Sep 17 00:00:00 2001 From: lyfO_o <764716047@qq.com> Date: 星期六, 16 七月 2022 17:33:17 +0800 Subject: [PATCH] 改造 --- safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/config/exception/GlobalExceptionHandler.java | 16 +++++++++++++++- 1 files changed, 15 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 75b7c2f..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 @@ -9,6 +9,7 @@ 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; @@ -37,7 +38,7 @@ @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()); } @@ -67,6 +68,19 @@ /** + * @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; + + } + + /** * 系统错误异常 */ @ResponseBody -- Gitblit v1.9.2