인천 일보 아카데미 44일차 -2- ModelAttribute / 체크박스로 받은 값 담기 / @Service 알아보기 / 의존성 주입 - Autowired


인천 일보 아카데미 44일차 -2- ModelAttribute / 체크박스로 받은 값 담기 / @Service 알아보기 / 의존성 주입 - Autowired

여러 타입의 정보를 파라미터로 받아 콘솔에 출력해보기 Controller @Controller public class MainController { @GetMapping("/monday5") public String monday5(){ return "monday5"; } monday5.jsp를 화면에 보여주기 위해 return moday5를하는 GetMapping 메소드 @PostMapping("/monday5-param") public String monday5Param(@RequestParam("name") String name, @RequestParam("gender") String gender , @RequestParam("city") String city , @RequestParam("lang"..


원문링크 : 인천 일보 아카데미 44일차 -2- ModelAttribute / 체크박스로 받은 값 담기 / @Service 알아보기 / 의존성 주입 - Autowired