推送日志对外接口

This commit is contained in:
2023-09-18 14:07:07 +08:00
parent f3eaf14351
commit f17b2c39aa
3 changed files with 62 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
package com.njcn.csdevice.api;
import com.njcn.common.pojo.constant.ServerInfo;
import com.njcn.common.pojo.response.HttpResult;
import com.njcn.csdevice.api.fallback.EventLogsClientFallbackFactory;
import com.njcn.csdevice.pojo.po.CsEventSendMsg;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import java.util.List;
/**
* @author xy
*/
@FeignClient(value = ServerInfo.CS_DEVICE_BOOT, path = "/csEventSendMsg", fallbackFactory = EventLogsClientFallbackFactory.class,contextId = "csEventSendMsg")
public interface EventLogsFeignClient {
@PostMapping("/add")
HttpResult<String> addLogs(@RequestBody List<CsEventSendMsg> list);
}

View File

@@ -0,0 +1,38 @@
package com.njcn.csdevice.api.fallback;
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
import com.njcn.common.pojo.exception.BusinessException;
import com.njcn.common.pojo.response.HttpResult;
import com.njcn.csdevice.api.EventLogsFeignClient;
import com.njcn.csdevice.pojo.po.CsEventSendMsg;
import feign.hystrix.FallbackFactory;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import java.util.List;
/**
* @author xy
*/
@Slf4j
@Component
public class EventLogsClientFallbackFactory implements FallbackFactory<EventLogsFeignClient> {
@Override
public EventLogsFeignClient create(Throwable cause) {
//判断抛出异常是否为解码器抛出的业务异常
Enum<?> exceptionEnum = CommonResponseEnum.SERVICE_FALLBACK;
if (cause.getCause() instanceof BusinessException) {
BusinessException businessException = (BusinessException) cause.getCause();
}
Enum<?> finalExceptionEnum = exceptionEnum;
return new EventLogsFeignClient() {
@Override
public HttpResult<String> addLogs(List<CsEventSendMsg> list) {
log.error("{}异常,降级处理,异常为:{}","新增推送日志",cause.toString());
throw new BusinessException(finalExceptionEnum);
}
};
}
}