lyhzzz 2 years ago
parent
commit
a821bb721a

+ 1 - 3
src/main/java/com/fdkankan/manage/httpClient/address/FdkkAddressSource.java

@@ -12,11 +12,9 @@ public class FdkkAddressSource implements AddressSource {
     @Value("${4dkk.v4fdService.basePath}")
     private String basePath;
 
-    @Value("${4dkk.v4fdService.port}")
-    private String port;
 
     @Override
     public ForestAddress getAddress(ForestRequest forestRequest) {
-        return new ForestAddress("","",Integer.valueOf(port),basePath);
+        return new ForestAddress("","",null,basePath);
     }
 }