2019. 11. 4. 17:35
포워딩 방식
거쳐서 포워딩
response.sendRedirect("request2.jsp");
현재페이지에서 포워딩
request.getRequestDispatcher("request2.jsp");
RequestDispatcher dispatch = request.getRequestDispatcher("request2.jsp");
dispatch.forward(request, response);
'JSP' 카테고리의 다른 글
[JSP] 액션태그 (0) | 2019.11.05 |
---|---|
[JSP] XML/JSP 페이지에서 에러 페이지 연결 시키기 (0) | 2019.11.05 |
[JSP] session scope 와 application scope 차이 (0) | 2019.11.04 |
[JSP] 영역 객체와 속성 (0) | 2019.11.02 |
[JSP] config - 객체 (0) | 2019.11.02 |