How to forward from a Java servlet to a JSP

Source: Internet
Author: User

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

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.