1) http 요청 파라미터 값을 얻기 위해

<input type="text" name="test_id"> 이면, 

String  datas = request.getParameter("test_id"); 이면 test_id에 valuse 값을 가져올 수 있다. 


2) 다른곳으로 정보를 넘겨줄때 request 개채의 속성(attribute)을 사용

서블릿에서 reuqest.setAttribute("name",strname);을 속성으로 집어 넣고

jsp에서 <% String strname = (String)request.getAttribute("name"; %> 하면 값을 출력할 수 있다. 



반응형

+ Recent posts