HttpServletRequest를 이용한 요청 파라미터 구하기

@RequestMapping 메소드에  HttpServletRequest 타입의 인자를 추가한 뒤,  getParameter()메소드를 이용해서 HTTP 요청 파라미터를 구하면 된다.

@Controller
	public class EventController {
	
	@RequestMapping(value="/event/create", method=RequestMethod.POST) //value = 경로 , method = HTTP전송방식
	public String list(HttpServletRequest request, Model model) throws IOException{ 
               String id = request.getParameter('id');
               if(id == null) return "member/registered";
	}
}

안녕하세요. 끄적이기를 좋아하는 개발자 이예빈입니다. 매일 일기를 쓰는 것 처럼 블로그를 쓰고 싶어요.
Leave a Reply

Your email address will not be published. Required fields are marked *