Browse Source

custom模块 去除url

feature/syp_points
zhangyongzhangyong 5 years ago
parent
commit
026649f5bc
  1. 10
      esua-epdc/epdc-module/epdc-custom/epdc-custom-server/pom.xml
  2. 2
      esua-epdc/epdc-module/epdc-custom/epdc-custom-server/src/main/java/com/elink/esua/epdc/modules/dept/feign/AdminFeignClient.java

10
esua-epdc/epdc-module/epdc-custom/epdc-custom-server/pom.xml

@ -18,6 +18,11 @@
<artifactId>epdc-custom-client</artifactId> <artifactId>epdc-custom-client</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
</dependency> </dependency>
<dependency>
<groupId>com.esua.epdc</groupId>
<artifactId>epdc-admin-client</artifactId>
<version>1.0.0</version>
</dependency>
<dependency> <dependency>
<groupId>com.esua.epdc</groupId> <groupId>com.esua.epdc</groupId>
<artifactId>epdc-commons-tools</artifactId> <artifactId>epdc-commons-tools</artifactId>
@ -46,11 +51,6 @@
<artifactId>epdc-commons-tools-phone</artifactId> <artifactId>epdc-commons-tools-phone</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
</dependency> </dependency>
<dependency>
<groupId>com.esua.epdc</groupId>
<artifactId>epdc-admin-client</artifactId>
<version>1.0.0</version>
</dependency>
<!-- nacos start --> <!-- nacos start -->
<dependency> <dependency>

2
esua-epdc/epdc-module/epdc-custom/epdc-custom-server/src/main/java/com/elink/esua/epdc/modules/dept/feign/AdminFeignClient.java

@ -14,7 +14,7 @@ import java.util.List;
* @author zhangyong * @author zhangyong
* @date 18:40 2020-05-19 * @date 18:40 2020-05-19
*/ */
@FeignClient(name = ServiceConstant.EPDC_ADMIN_SERVER, fallback = AdminFeignClientFallback.class, url = "http://127.0.0.1:9092") @FeignClient(name = ServiceConstant.EPDC_ADMIN_SERVER, fallback = AdminFeignClientFallback.class)
public interface AdminFeignClient { public interface AdminFeignClient {
/** /**

Loading…
Cancel
Save