9 changed files with 266 additions and 56 deletions
@ -0,0 +1,34 @@
|
||||
package org.springblade.common.exception; |
||||
|
||||
/** |
||||
* 远程接口调用异常 |
||||
*/ |
||||
public class FeignException extends RuntimeException{ |
||||
|
||||
private Integer code; |
||||
|
||||
private String message; |
||||
|
||||
|
||||
public FeignException(Integer code, String message) { |
||||
this.code = code; |
||||
this.message = message; |
||||
} |
||||
|
||||
public Integer getCode() { |
||||
return code; |
||||
} |
||||
|
||||
public void setCode(Integer code) { |
||||
this.code = code; |
||||
} |
||||
|
||||
@Override |
||||
public String getMessage() { |
||||
return message; |
||||
} |
||||
|
||||
public void setMessage(String message) { |
||||
this.message = message; |
||||
} |
||||
} |
@ -0,0 +1,136 @@
|
||||
package com.logpm.basicdata.feign; |
||||
|
||||
import com.alibaba.fastjson.JSONObject; |
||||
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
||||
import com.logpm.basicdata.vo.BasicdataWarehouseVO; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.common.exception.FeignException; |
||||
import org.springblade.core.mp.support.BladePage; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
@Slf4j |
||||
@Component |
||||
public class IBasicdataWarehouseClientFallback implements IBasicdataWarehouseClient { |
||||
|
||||
private final FeignException feignException = new FeignException(500, "系统内部接口错误,请联系管理员"); |
||||
|
||||
@Override |
||||
public BladePage<BasicdataWarehouseEntity> topWarehouse(Integer current, Integer size) { |
||||
log.error("调用logpm-basicdata-api接口失败:topWarehouse {} {}", current, size); |
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public BasicdataWarehouseEntity findByName(String destinationWarehouse) { |
||||
log.error("调用logpm-basicdata-api接口失败:findByName {}", destinationWarehouse); |
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public BasicdataWarehouseEntity getWarehouse(String name, String warehouseCode) { |
||||
log.error("调用logpm-basicdata-api接口失败:getWarehouse {},{}", name, warehouseCode); |
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public BasicdataWarehouseEntity getWarehouseByOldId(Integer id) { |
||||
log.error("调用logpm-basicdata-api接口失败:getWarehouseByOldId {}", id); |
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public Long addWarehouse(BasicdataWarehouseEntity newEntity) { |
||||
log.error("调用logpm-basicdata-api接口失败:addWarehouse {}", newEntity); |
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public BasicdataWarehouseEntity getWarehouseEntityByWarehouseCode(String warehouseCode) { |
||||
log.error("调用logpm-basicdata-api接口失败:getWarehouseEntityByWarehouseCode {}", warehouseCode); |
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public List<BasicdataWarehouseEntity> getMyWarehouseList() { |
||||
log.error("调用logpm-basicdata-api接口失败:getMyWarehouseList "); |
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public BasicdataWarehouseEntity preserveCurrentWarehouse(BasicdataWarehouseEntity warehouseEntity) { |
||||
log.error("调用logpm-basicdata-api接口失败:preserveCurrentWarehouse {}", warehouseEntity); |
||||
|
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public BasicdataWarehouseEntity getMyCurrentWarehouse() { |
||||
log.error("调用logpm-basicdata-api接口失败:getMyCurrentWarehouse "); |
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public BasicdataWarehouseVO getMyCurrentWarehouseAndConfig() { |
||||
log.error("调用logpm-basicdata-api接口失败:getMyCurrentWarehouseAndConfig "); |
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public List<Long> getWarehouseIds() { |
||||
log.error("调用logpm-basicdata-api接口失败:getWarehouseIds "); |
||||
|
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public List<BasicdataWarehouseEntity> getMyWatchWarehouse() { |
||||
log.error("调用logpm-basicdata-api接口失败:getMyWatchWarehouse "); |
||||
|
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public R clearWarehouseCache() { |
||||
log.error("调用logpm-basicdata-api接口失败:clearWarehouseCache "); |
||||
|
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public BasicdataWarehouseEntity getEntityWarehouseId(Long warehouseId) { |
||||
log.error("调用logpm-basicdata-api接口失败:getEntityWarehouseId {} ", warehouseId); |
||||
|
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public List<JSONObject> findWarehouseList(String warehouseName) { |
||||
log.error("调用logpm-basicdata-api接口失败:findWarehouseList {} ", warehouseName); |
||||
|
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public List<BasicdataWarehouseEntity> findAllList() { |
||||
log.error("调用logpm-basicdata-api接口失败:findAllList "); |
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public List<BasicdataWarehouseEntity> findWarehousesByIds(List<Long> ids) { |
||||
log.error("调用logpm-basicdata-api接口失败:findWarehousesByIds {} ", ids); |
||||
|
||||
throw feignException; |
||||
} |
||||
|
||||
@Override |
||||
public Map<Long, String> findNamesMapByIds(List<Long> warehouseIds) { |
||||
log.error("调用logpm-basicdata-api接口失败:findNamesMapByIds {} ", warehouseIds); |
||||
|
||||
throw feignException; |
||||
} |
||||
} |
Loading…
Reference in new issue