Forwarding Requests:
Example Code (Continued)
private void gotoPage(String address,
HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException {
RequestDispatcher dispatcher =
getServletContext().getRequestDispatcher(address);
dispatcher.forward(request, response);
}
107
JSP
www.corewebprogramming.com
Reminder: JSP useBean
Scope Alternatives
request
scope="request"
/>
session
scope="session"
/>
application
scope="application"
/>
page
scope="page"
/>
or just
This scope is not used in MVC architecture
108
JSP
www.corewebprogramming.com
54