diff --git a/service-forest/pom.xml b/service-forest/pom.xml
index efe6783..38e8d69 100644
--- a/service-forest/pom.xml
+++ b/service-forest/pom.xml
@@ -27,6 +27,10 @@
forest-spring-boot-starter
1.5.30
+
+ org.springframework.cloud
+ spring-cloud-starter-loadbalancer
+
\ No newline at end of file
diff --git a/service-forest/src/main/java/com/lanyuanxiaoyao/service/forest/configuration/SpringCloudDiscoveryInterceptor.java b/service-forest/src/main/java/com/lanyuanxiaoyao/service/forest/configuration/SpringCloudDiscoveryInterceptor.java
index cac04b4..69ccd88 100644
--- a/service-forest/src/main/java/com/lanyuanxiaoyao/service/forest/configuration/SpringCloudDiscoveryInterceptor.java
+++ b/service-forest/src/main/java/com/lanyuanxiaoyao/service/forest/configuration/SpringCloudDiscoveryInterceptor.java
@@ -1,20 +1,18 @@
package com.lanyuanxiaoyao.service.forest.configuration;
import cn.hutool.core.util.ObjectUtil;
-import cn.hutool.core.util.RandomUtil;
import cn.hutool.core.util.StrUtil;
import cn.hutool.core.util.URLUtil;
import com.dtflys.forest.auth.BasicAuth;
import com.dtflys.forest.http.ForestAddress;
import com.dtflys.forest.http.ForestRequest;
import com.dtflys.forest.interceptor.Interceptor;
+import com.eshore.odcp.hudi.connector.Constants;
import java.net.URL;
-import org.eclipse.collections.api.factory.Lists;
-import org.eclipse.collections.api.list.ImmutableList;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.cloud.client.ServiceInstance;
-import org.springframework.cloud.client.discovery.DiscoveryClient;
+import org.springframework.cloud.client.loadbalancer.LoadBalancerClient;
import org.springframework.stereotype.Component;
/**
@@ -25,10 +23,10 @@ import org.springframework.stereotype.Component;
public class SpringCloudDiscoveryInterceptor implements Interceptor