컨트롤러

@RequestMapping("/view")

public String home(HttpServletRequest http, Model model) {

String id = http.getParameter("id");

String pw = http.getParameter("pw");

model.addAttribute("id", id);

model.addAttribute("pw", pw);


return "board/view";

}


인자로 http,model을 받고


id와 pw에 파라미터를 가져온다.


model에 받은 값으로 속성을 추가해준다.



<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">

<title>Insert title here</title>

</head>

<body>


<p>아이디$ {id} 비밀번호 ${pw }</p>


</body>

</html>



@@RequestParam 어노테이션


@RequestMapping("/view")

public String home(@RequestParam("id")String id ,

                            @RequestParam("pw")int pw ,Model model) {

// String id = http.getParameter("id");

// String pw = http.getParameter("pw");

model.addAttribute("id", id);

model.addAttribute("pw", pw);


return "board/view";

}



어노테이션으로 작성하면 인자로 한번에 받을 수 있다.

@RequestParam("파라미터명")자료형 변수명 으로 작성한다.


블로그 이미지

왕왕왕왕

,