Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

31 lines
1011B

  1. package com.telpo.iotgateway.exception;
  2. import lombok.extern.slf4j.Slf4j;
  3. import org.springframework.web.bind.annotation.ExceptionHandler;
  4. import org.springframework.web.bind.annotation.ResponseBody;
  5. import org.springframework.web.bind.annotation.RestControllerAdvice;
  6. import response.ERRORCODE;
  7. import response.Result;
  8. import java.text.MessageFormat;
  9. /**
  10. * @program: DataPushServer
  11. * @description: 全局异常拦截
  12. * @author: linwl
  13. * @create: 2020-07-11 10:29
  14. */
  15. @Slf4j
  16. @RestControllerAdvice(basePackages = "com.telpo.datapushserver.controller")
  17. public class GobalExceptionHandler {
  18. @ExceptionHandler(value = Exception.class)
  19. @ResponseBody
  20. public Result<Boolean> exceptionErrorHandler(Exception e) throws Exception {
  21. log.error(MessageFormat.format("推送服务发生异常:{0}!", e.getMessage()), e);
  22. return new Result.Builder<Boolean>()
  23. .setCode(ERRORCODE.SystemErr)
  24. .setMessage(MessageFormat.format("系统发生异常:{0}!", e.getMessage()))
  25. .build();
  26. }
  27. }