GlobalExceptionHandler.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.jkcredit.invoice.config;
  2. import com.jkcredit.invoice.util.LogFileName;
  3. import com.jkcredit.invoice.util.LoggerUtil;
  4. import com.jkcredit.invoice.util.RespR;
  5. import org.slf4j.Logger;
  6. import org.springframework.http.HttpStatus;
  7. import org.springframework.validation.BindException;
  8. import org.springframework.validation.FieldError;
  9. import org.springframework.web.bind.MethodArgumentNotValidException;
  10. import org.springframework.web.bind.annotation.*;
  11. import java.util.List;
  12. /**
  13. * @description:
  14. * @author: sunzhaoning
  15. * @create: 2019-05-29 13:43
  16. * @version: V1.0
  17. **/
  18. @RestControllerAdvice
  19. public class GlobalExceptionHandler {
  20. Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
  21. /**
  22. * 全局异常
  23. * @param e
  24. * @return RespR
  25. */
  26. @ExceptionHandler(Exception.class)
  27. @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
  28. public RespR exception(Exception e) {
  29. MIX_LOG.error("全局异常信息,异常信息为:{}", e.getMessage(), e);
  30. return new RespR<>(e);
  31. }
  32. /**
  33. * validation Exception
  34. * @param exception
  35. * @return RespR
  36. */
  37. @ExceptionHandler({MethodArgumentNotValidException.class, BindException.class})
  38. @ResponseStatus(HttpStatus.BAD_REQUEST)
  39. public RespR bodyValidExceptionHandler(MethodArgumentNotValidException exception) {
  40. List<FieldError> fieldErrors = exception.getBindingResult().getFieldErrors();
  41. RespR result = new RespR();
  42. result.setMsg(fieldErrors.get(0).getDefaultMessage());
  43. MIX_LOG.warn(fieldErrors.get(0).getDefaultMessage());
  44. return result;
  45. }
  46. }