WEB/SpringMVC
SpringMVC :: @RequestMapping의 GET방식과 POST방식, GET 과 POST 차이
@RequestMapping의 GET방식 요청과 POST방식 요청 Request요청을 보낼때 GET방식으로 하는방법과 POST 방식으로 하는 방법이 있다. GET 방식으로 요청 뷰 페이지에서 form 태그 속성에 method 값을 GET으로 설정한 뒤, loginForm.jsp ID : 비밀번호 : Controller의 @RequestMapping을 아래와 같이 설정한다. @RequestMapping(value="경로", method=RequestMethod.GET) Controller.java @RequestMapping(value="/student/studentForm", method=RequestMethod.GET) public String studentForm() { // get 방식만 가능 ..
2018. 3. 20. 23:44
최근댓글