代码合并
This commit is contained in:
@@ -1,34 +1,34 @@
|
||||
package com.njcn.prepare.harmonic.api.event;
|
||||
|
||||
import com.njcn.common.pojo.constant.ServerInfo;
|
||||
import com.njcn.common.pojo.response.HttpResult;
|
||||
import com.njcn.prepare.harmonic.api.event.fallback.SpThroughFeignClientFallbackFactory;
|
||||
import com.njcn.prepare.harmonic.pojo.param.SpThroughParam;
|
||||
import com.njcn.prepare.harmonic.pojo.vo.SpThroughVO;
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 高低电压穿越Feign客户端
|
||||
* @author guofeihu
|
||||
* @date 2024-08-22
|
||||
*/
|
||||
@FeignClient(
|
||||
value = ServerInfo.PREPARE_BOOT,//对应模块名
|
||||
path = "/spThrough",//对应controller请求类
|
||||
fallbackFactory = SpThroughFeignClientFallbackFactory.class//服务降级处理类
|
||||
)
|
||||
public interface SpThroughFeignClient {
|
||||
|
||||
@PostMapping("/record")
|
||||
HttpResult<Boolean> record();
|
||||
|
||||
@PostMapping("/getDataByEventIds")
|
||||
HttpResult<SpThroughVO> getDataByEventIds(@RequestBody @Validated SpThroughParam spThroughParam);
|
||||
|
||||
@PostMapping("/formatEventIds")
|
||||
HttpResult<List<String>> formatEventIds(@RequestBody @Validated SpThroughParam spThroughParam);
|
||||
}
|
||||
//package com.njcn.prepare.harmonic.api.event;
|
||||
//
|
||||
//import com.njcn.common.pojo.constant.ServerInfo;
|
||||
//import com.njcn.common.pojo.response.HttpResult;
|
||||
//import com.njcn.prepare.harmonic.api.event.fallback.SpThroughFeignClientFallbackFactory;
|
||||
//import com.njcn.prepare.harmonic.pojo.param.SpThroughParam;
|
||||
//import com.njcn.prepare.harmonic.pojo.vo.SpThroughVO;
|
||||
//import org.springframework.cloud.openfeign.FeignClient;
|
||||
//import org.springframework.validation.annotation.Validated;
|
||||
//import org.springframework.web.bind.annotation.PostMapping;
|
||||
//import org.springframework.web.bind.annotation.RequestBody;
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * 高低电压穿越Feign客户端
|
||||
// * @author guofeihu
|
||||
// * @date 2024-08-22
|
||||
// */
|
||||
//@FeignClient(
|
||||
// value = ServerInfo.PREPARE_BOOT,//对应模块名
|
||||
// path = "/spThrough",//对应controller请求类
|
||||
// fallbackFactory = SpThroughFeignClientFallbackFactory.class//服务降级处理类
|
||||
//)
|
||||
//public interface SpThroughFeignClient {
|
||||
//
|
||||
// @PostMapping("/record")
|
||||
// HttpResult<Boolean> record();
|
||||
//
|
||||
// @PostMapping("/getDataByEventIds")
|
||||
// HttpResult<SpThroughVO> getDataByEventIds(@RequestBody @Validated SpThroughParam spThroughParam);
|
||||
//
|
||||
// @PostMapping("/formatEventIds")
|
||||
// HttpResult<List<String>> formatEventIds(@RequestBody @Validated SpThroughParam spThroughParam);
|
||||
//}
|
||||
|
||||
@@ -1,53 +1,53 @@
|
||||
package com.njcn.prepare.harmonic.api.event.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.prepare.harmonic.api.event.SpThroughFeignClient;
|
||||
import com.njcn.prepare.harmonic.pojo.param.SpThroughParam;
|
||||
import com.njcn.prepare.harmonic.pojo.vo.SpThroughVO;
|
||||
import com.njcn.prepare.harmonic.utils.PrepareEnumUtil;
|
||||
import feign.hystrix.FallbackFactory;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Component;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 高低电压穿越熔断降级
|
||||
* @author guofeihu
|
||||
* @date 2024-08-22
|
||||
*/
|
||||
@Slf4j
|
||||
@Component
|
||||
public class SpThroughFeignClientFallbackFactory implements FallbackFactory<SpThroughFeignClient> {
|
||||
|
||||
@Override
|
||||
public SpThroughFeignClient create(Throwable throwable) {
|
||||
Enum<?> exceptionEnum = CommonResponseEnum.SERVICE_FALLBACK;
|
||||
if (throwable.getCause() instanceof BusinessException) {
|
||||
BusinessException businessException = (BusinessException)throwable.getCause();
|
||||
exceptionEnum = PrepareEnumUtil.getExceptionEnum(businessException.getResult());
|
||||
}
|
||||
|
||||
Enum<?> finalExceptionEnum = exceptionEnum;
|
||||
return new SpThroughFeignClient() {
|
||||
@Override
|
||||
public HttpResult<Boolean> record() {
|
||||
log.error("{}异常,降级处理,异常为:{}", "高低电压穿越记录:", throwable.toString());
|
||||
throw new BusinessException(finalExceptionEnum);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HttpResult<SpThroughVO> getDataByEventIds(SpThroughParam spThroughParam) {
|
||||
log.error("{}异常,降级处理,异常为:{}", "根据事件ID集合及能源站类型获取高低电压穿越次数:", throwable.toString());
|
||||
throw new BusinessException(finalExceptionEnum);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HttpResult<List<String>> formatEventIds(SpThroughParam spThroughParam) {
|
||||
log.error("{}异常,降级处理,异常为:{}", "根据原有的事件集合进行过滤:", throwable.toString());
|
||||
throw new BusinessException(finalExceptionEnum);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
//package com.njcn.prepare.harmonic.api.event.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.prepare.harmonic.api.event.SpThroughFeignClient;
|
||||
//import com.njcn.prepare.harmonic.pojo.param.SpThroughParam;
|
||||
//import com.njcn.prepare.harmonic.pojo.vo.SpThroughVO;
|
||||
//import com.njcn.prepare.harmonic.utils.PrepareEnumUtil;
|
||||
//import feign.hystrix.FallbackFactory;
|
||||
//import lombok.extern.slf4j.Slf4j;
|
||||
//import org.springframework.stereotype.Component;
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * 高低电压穿越熔断降级
|
||||
// * @author guofeihu
|
||||
// * @date 2024-08-22
|
||||
// */
|
||||
//@Slf4j
|
||||
//@Component
|
||||
//public class SpThroughFeignClientFallbackFactory implements FallbackFactory<SpThroughFeignClient> {
|
||||
//
|
||||
// @Override
|
||||
// public SpThroughFeignClient create(Throwable throwable) {
|
||||
// Enum<?> exceptionEnum = CommonResponseEnum.SERVICE_FALLBACK;
|
||||
// if (throwable.getCause() instanceof BusinessException) {
|
||||
// BusinessException businessException = (BusinessException)throwable.getCause();
|
||||
// exceptionEnum = PrepareEnumUtil.getExceptionEnum(businessException.getResult());
|
||||
// }
|
||||
//
|
||||
// Enum<?> finalExceptionEnum = exceptionEnum;
|
||||
// return new SpThroughFeignClient() {
|
||||
// @Override
|
||||
// public HttpResult<Boolean> record() {
|
||||
// log.error("{}异常,降级处理,异常为:{}", "高低电压穿越记录:", throwable.toString());
|
||||
// throw new BusinessException(finalExceptionEnum);
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public HttpResult<SpThroughVO> getDataByEventIds(SpThroughParam spThroughParam) {
|
||||
// log.error("{}异常,降级处理,异常为:{}", "根据事件ID集合及能源站类型获取高低电压穿越次数:", throwable.toString());
|
||||
// throw new BusinessException(finalExceptionEnum);
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public HttpResult<List<String>> formatEventIds(SpThroughParam spThroughParam) {
|
||||
// log.error("{}异常,降级处理,异常为:{}", "根据原有的事件集合进行过滤:", throwable.toString());
|
||||
// throw new BusinessException(finalExceptionEnum);
|
||||
// }
|
||||
// };
|
||||
// }
|
||||
//}
|
||||
|
||||
Reference in New Issue
Block a user