Here's a quick example, that shows a complete method, the use of a Java servlet to forward to a JSP (JavaServer Page).
Just Pass the method an HttpServletRequest, an httpservletresponse, and a URL, and your ' re in business. Note that my JSP URL is string typically looks something like " /myPage.jsp
".
private void Forwardtopage (final httpservletrequest request, final httpservletresponse response, String URL) Throws IOException, servletexception{ requestdispatcher dispatcher = Getservletcontext (). Getrequestdispatcher ( URL); Dispatcher.forward (request,response);}
If you need to perform a redirect from a servlets to a JSP instead, I ' ve also written a short "how to redirect from a SERVL ET to a JSP "tutorial.
I ' ll try to post information here on the difference between a forward and a redirect soon.
How to forward from a Java servlet to a JSP