From 80df310530ea45a2744c9dcb36dee49f537bc85f Mon Sep 17 00:00:00 2001 From: Woonduk Kang Date: Mon, 12 Nov 2012 02:55:59 +0000 Subject: [PATCH] =?UTF-8?q?[=EA=B0=95=EC=9A=B4=EB=8D=95]=20[LUCYSUS-1744]?= =?UTF-8?q?=20=EB=A1=9C=EA=B7=B8=20=EC=B6=9C=EB=A0=A5=20=EB=B6=80=EB=B6=84?= =?UTF-8?q?=20=EC=88=98=EC=A0=95.?= 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-web/trunk@853 84d0f5b1-2673-498c-a247-62c4ff18d310 --- .../hippo/web/controller/MainController.java | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/nhn/hippo/web/controller/MainController.java b/src/main/java/com/nhn/hippo/web/controller/MainController.java index 21c48d89d..edfb1288b 100644 --- a/src/main/java/com/nhn/hippo/web/controller/MainController.java +++ b/src/main/java/com/nhn/hippo/web/controller/MainController.java @@ -13,24 +13,23 @@ import org.springframework.web.bind.annotation.RequestMethod; import com.nhn.hippo.web.service.FlowChartService; /** - * * @author netspider */ @Controller public class MainController { - private final Logger logger = LoggerFactory.getLogger(this.getClass()); + private final Logger logger = LoggerFactory.getLogger(this.getClass()); - @Autowired - private FlowChartService flow; + @Autowired + private FlowChartService flow; - @RequestMapping(value = "/applications", method = RequestMethod.GET) - public String flow(Model model) { - List applications = flow.selectAllApplicationNames(); - model.addAttribute("applications", applications); + @RequestMapping(value = "/applications", method = RequestMethod.GET) + public String flow(Model model) { + List applications = flow.selectAllApplicationNames(); + model.addAttribute("applications", applications); - logger.debug("Applications, %s", applications); + logger.debug("Applications, {}", applications); - return "applications"; - } + return "applications"; + } } \ No newline at end of file