This commit is contained in:
Looly
2022-11-03 23:37:48 +08:00
parent b696ad4b08
commit 3b1a375096
4 changed files with 31 additions and 6 deletions

View File

@@ -240,4 +240,11 @@ public class HttpRequestTest {
final HttpRequest a = HttpRequest.post("https://hutool.cn/").form("a", 1);
Console.log(a.toString());
}
@Test
@Ignore
public void issueI5Y68WTest() {
final HttpResponse httpResponse = HttpRequest.get("http://82.157.17.173:8100/app/getAddress").execute();
Console.log(httpResponse.body());
}
}