페이지 이동 방법
1. Forward
– request 스코프에 담긴 값이 다음 페이지에 전달된다.
– 이동된 페이지지 주소가 화면에 안보임(기존 페이지 주소와 같음)
1 2 3 4 5 6 7 8 9 |
1) <% pageContext.forward("https://google.com"); %> 2) <jsp:forward page="https://google.com"/>; 3) <% RequestDispatcher rd = request.getRequestDispatcher("https://google.com"); rd.forward(request.response); %> |
2. Redirect
– 클라이언트가 새로운 페이지를 요청한 것과 같이 페이지 이동
– 이동된 페이지지 주소가 화면에 보임(기존 페이지 주소와 다름)
1 2 3 4 5 |
<% response.sendRedirect("https://www.google.com"); %> |
참조 : https://installed.tistory.com/entry/8-JSP-%ED%8A%B9%EC%A0%95%ED%8E%98%EC%9D%B4%EC%A7%80%EB%A1%9C-%EC%9D%B4%EB%8F%99%EB%B0%A9%EB%B2%95
댓글