fix(uboot-core): 修改服务名

This commit is contained in:
chuhang
2021-10-20 14:22:56 +08:00
parent a256bc0ff4
commit e06eb9f636

View File

@ -1,6 +1,7 @@
package com.chinaunicom.mall.ebtp.common.sharding.feign.client;
import com.chinaunicom.mall.ebtp.common.base.entity.BaseResponse;
import com.chinaunicom.mall.ebtp.common.constant.ServiceNameConstants;
import com.chinaunicom.mall.ebtp.common.sharding.feign.domain.ProjectVO;
import com.chinaunicom.mall.ebtp.common.sharding.feign.factory.ProcessServiceFallbackFactory;
import org.springframework.cloud.openfeign.FeignClient;
@ -13,7 +14,7 @@ import org.springframework.web.bind.annotation.RequestParam;
* @author dino
* @date 2021/09/10 10:49
*/
@FeignClient(contextId = "processService",value = "${mconfig.feign.name.process}",
@FeignClient(contextId = "processService",value = ServiceNameConstants.PROCESS_SERVICE,
fallbackFactory = ProcessServiceFallbackFactory.class)
//@FeignClient(name = "processService",url = "http://10.242.31.158:18022/api/biz-service-ebtp-process/", fallbackFactory = ProcessServiceFallbackFactory.class)
public interface ProcessService {