1.influxDB引入包调整

2.波形图片对外接口
This commit is contained in:
2023-09-26 20:35:06 +08:00
parent c5798152cc
commit f2d9756e3f
4 changed files with 63 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
package com.njcn.csharmonic.api;
import com.njcn.common.pojo.constant.ServerInfo;
import com.njcn.common.pojo.response.HttpResult;
import com.njcn.csharmonic.api.fallback.WavePicClientFallbackFactory;
import com.njcn.csharmonic.pojo.vo.CsEventVO;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
/**
* @author xy
*/
@FeignClient(value = ServerInfo.CS_HARMONIC_BOOT, path = "/event", fallbackFactory = WavePicClientFallbackFactory.class,contextId = "event")
public interface WavePicFeignClient {
@GetMapping("/getWavePics")
HttpResult<CsEventVO> getWavePics(@RequestParam("eventId") String eventId);
}

View File

@@ -0,0 +1,34 @@
package com.njcn.csharmonic.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.csharmonic.api.WavePicFeignClient;
import com.njcn.csharmonic.pojo.vo.CsEventVO;
import feign.hystrix.FallbackFactory;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
/**
* @author xy
*/
@Slf4j
@Component
public class WavePicClientFallbackFactory implements FallbackFactory<WavePicFeignClient> {
@Override
public WavePicFeignClient create(Throwable cause) {
//判断抛出异常是否为解码器抛出的业务异常
Enum<?> exceptionEnum = CommonResponseEnum.SERVICE_FALLBACK;
if (cause.getCause() instanceof BusinessException) {
BusinessException businessException = (BusinessException) cause.getCause();
}
Enum<?> finalExceptionEnum = exceptionEnum;
return new WavePicFeignClient() {
@Override
public HttpResult<CsEventVO> getWavePics(String eventId) {
log.error("{}异常,降级处理,异常为:{}","获取事件波形图",cause.toString());
throw new BusinessException(finalExceptionEnum);
}
};
}
}

View File

@@ -91,4 +91,10 @@ public class CsEventPO extends BaseEntity {
*/
@TableField(value = "level")
private Integer level;
/**
* 发生位置 grid:电网侧load:负载侧
*/
@TableField(value = "location")
private String location;
}