From 12c6fd6d89929f48812a66159c506123991a8ff8 Mon Sep 17 00:00:00 2001 From: Lenovo Date: Mon, 5 Aug 2024 18:21:43 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=A7=E9=81=93=E4=BB=A3=E7=90=86=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ruoyi/business/service/impl/MeituanServiceImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ruoyi-system/src/main/java/com/ruoyi/business/service/impl/MeituanServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/business/service/impl/MeituanServiceImpl.java index 3998af6..0c4008d 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/business/service/impl/MeituanServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/business/service/impl/MeituanServiceImpl.java @@ -1057,8 +1057,10 @@ public class MeituanServiceImpl implements IMeituanService { // private CloseableHttpClient proxyHttpClient() { private CloseableHttpClient proxyHttpClient(String ipPort) { + log.error("==============隧道代理返回结果==========:"+ipPort); String proxyHost = ipPort.split(":")[0]; int proxyPort = Integer.valueOf(ipPort.split(":")[1]); + log.error("==============隧道代理返回结果解析地址,端口==========:"+proxyHost+","+proxyPort); String username = proxyProperties.getAccount(); String password = proxyProperties.getPwd(); HttpHost proxy = new HttpHost(proxyHost, proxyPort);