mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-28 06:08:43 +10:00
[강운덕] [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:
@@ -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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user