瀏覽代碼

IOT调用测试

master
林万龙 3 年之前
父節點
當前提交
fcc27cb7ea
共有 1 個檔案被更改,包括 0 行新增30 行删除
  1. +0
    -30
      src/main/java/com/telpo/iotgateway/exception/GobalExceptionHandler.java

+ 0
- 30
src/main/java/com/telpo/iotgateway/exception/GobalExceptionHandler.java 查看文件

@@ -1,30 +0,0 @@
package com.telpo.iotgateway.exception;

import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestControllerAdvice;
import response.ERRORCODE;
import response.Result;

import java.text.MessageFormat;

/**
* @program: DataPushServer
* @description: 全局异常拦截
* @author: linwl
* @create: 2020-07-11 10:29
*/
@Slf4j
@RestControllerAdvice(basePackages = "com.telpo.datapushserver.controller")
public class GobalExceptionHandler {
@ExceptionHandler(value = Exception.class)
@ResponseBody
public Result<Boolean> exceptionErrorHandler(Exception e) throws Exception {
log.error(MessageFormat.format("推送服务发生异常:{0}!", e.getMessage()), e);
return new Result.Builder<Boolean>()
.setCode(ERRORCODE.SystemErr)
.setMessage(MessageFormat.format("系统发生异常:{0}!", e.getMessage()))
.build();
}
}

Loading…
取消
儲存