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"; %> 하면 값을 출력할 수 있다.
반응형
'Backend > Java&Spring Framework' 카테고리의 다른 글
URL가져와서 특정주소 가져오기(request.getRequestURL().toString();) (0) | 2012.05.04 |
---|---|
세션 Session (0) | 2012.05.01 |
페이지 네비게이션 (0) | 2012.04.06 |
모니터링 jconsole (0) | 2012.03.20 |
1. 스프링 MVC Hello World 출력하기 (0) | 2012.01.18 |