コード例 #1
0
 @Test
 public void handle() {
   BasicHttpClient client = new BasicHttpClient("http://localhost:" + PORT);
   HttpResponse httpResponse = client.get("/heyo", null);
   System.out.println(httpResponse.getStatus());
   String bodyAsString = httpResponse.getBodyAsString();
   System.out.println(bodyAsString);
 }