| | |
| | | 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; |
| | |
| | | |
| | | |
| | | /** |
| | | * @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 |