From 71661baa3bbf4bba66d604fbb4c6da1d7d5af58e Mon Sep 17 00:00:00 2001 From: Chisu Yu Date: Mon, 31 Mar 2014 08:37:52 +0000 Subject: [PATCH] =?UTF-8?q?[=EC=9C=A0=EC=B9=98=EC=88=98]=20[tomcat-profile?= =?UTF-8?q?r-8]=20multi=20part=20test=20=EC=B6=94=EA=B0=80.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-testweb/trunk@3580 84d0f5b1-2673-498c-a247-62c4ff18d310 --- .../testweb/controller/AsyncHTTPClientController.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/com/nhn/pinpoint/testweb/controller/AsyncHTTPClientController.java b/src/main/java/com/nhn/pinpoint/testweb/controller/AsyncHTTPClientController.java index e8ba0fda7..1bbca75df 100644 --- a/src/main/java/com/nhn/pinpoint/testweb/controller/AsyncHTTPClientController.java +++ b/src/main/java/com/nhn/pinpoint/testweb/controller/AsyncHTTPClientController.java @@ -41,4 +41,10 @@ public class AsyncHTTPClientController { asyncHttpClientService.requestPostWithBody(); return "http"; } + + @RequestMapping(value = "/asynchttp/postWithMultipart") + public String requestPostWithMultipart(Model model) { + asyncHttpClientService.requestMultipart(); + return "http"; + } }