[강운덕] [LUCYSUS-1744] 로그 출력 부분 수정.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@853 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Woonduk Kang
2012-11-12 02:55:59 +00:00
parent d27dfa8a82
commit 80df310530
@@ -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<String> applications = flow.selectAllApplicationNames();
model.addAttribute("applications", applications);
@RequestMapping(value = "/applications", method = RequestMethod.GET)
public String flow(Model model) {
List<String> applications = flow.selectAllApplicationNames();
model.addAttribute("applications", applications);
logger.debug("Applications, %s", applications);
logger.debug("Applications, {}", applications);
return "applications";
}
return "applications";
}
}