修改feign接口调用

This commit is contained in:
付庆吉
2021-05-12 15:05:39 +08:00
parent 824d346434
commit ce4e9319e4
5 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.PathVariable;
/**
* 评审流程
*/
@FeignClient(value = "${mconfig.feign.name.process}", fallbackFactory = ProcessFeignFallbackFactory.class, url = "http://10.242.31.158:8806/biz-service-ebtp-process/")
@FeignClient(value = "${mconfig.feign.name.process}", fallbackFactory = ProcessFeignFallbackFactory.class)
public interface ProcessFeignService {

View File

@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.RequestBody;
/**
* 调用 PROJECT_SERVICE
*/
@FeignClient(value = "${mconfig.feign.name.project}", fallbackFactory = ProjectFeignFallbackFactory.class, url = "http://10.242.31.158:8806/biz-service-ebtp-project/")
@FeignClient(value = "${mconfig.feign.name.project}", fallbackFactory = ProjectFeignFallbackFactory.class)
public interface ProjectFeignService {
/**

View File

@ -15,7 +15,7 @@ import java.util.Map;
/**
* 调用 RESPS_SERVICE
*/
@FeignClient(value = "${mconfig.feign.name.resps}", fallbackFactory = ExportServiceRespsFallbakFactory.class, url = "http://10.242.31.158:8806/biz-service-ebtp-resps/")
@FeignClient(value = "${mconfig.feign.name.resps}", fallbackFactory = ExportServiceRespsFallbakFactory.class)
public interface RespsFeignService {
/**

View File

@ -17,7 +17,7 @@ import java.util.Map;
/**
* 调用 RSMS_SERVICE
*/
@FeignClient(value = "${mconfig.feign.name.rsms}", fallbackFactory = ExportServiceFallback.class, url = "http://127.0.0.1:10087/")
@FeignClient(value = "${mconfig.feign.name.rsms}", fallbackFactory = ExportServiceFallback.class)
public interface RsmsFeignService {

View File

@ -14,7 +14,7 @@ import java.util.List;
/**
* 调用 TENDER_SERVICE
*/
@FeignClient(value = "${mconfig.feign.name.tender}", fallbackFactory = TenderFeignFallbackFactory.class, url = "http://10.242.31.158:8806/biz-service-ebtp-tender/")
@FeignClient(value = "${mconfig.feign.name.tender}", fallbackFactory = TenderFeignFallbackFactory.class)
public interface TenderFeignService {
@ApiOperation("查询评审室下初审投标状态")