We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5cb27a commit d708f46Copy full SHA for d708f46
hutool-http/src/test/java/cn/hutool/http/RestTest.java
@@ -66,4 +66,12 @@ public void getWithBodyTest2() {
66
Console.log(request);
67
Console.log(request.execute().body());
68
}
69
+
70
+ @Test
71
+ @Ignore
72
+ public void getTest(){
73
+ final HttpRequest request = HttpRequest.get("http://localhost:8888/restTest");
74
+ final HttpResponse execute = request.execute();
75
+ Console.log(execute.headers());
76
+ }
77
0 commit comments