How many ways are available to ger RequestDispatcher object?
Answers were Sorted based on User's Feedback
Answer / vijay
by two ways we can get the RequestDispatcher object.
1) by using ServletContext.getRequestDispatcher().
2)by using HttpServletRquest.getRequestDispatcher().this
method inherted from ServletRequest.
| Is This Answer Correct ? | 24 Yes | 4 No |
Answer / rice
There are two ways to get RequestDispatcher object in the
servlet.
1. calling the getRequestDispatcher(String path) method on
ServletRequest.
RequestDispatcher rd=request.getRequestDispatcher(String path);
2. By getRequRequestDispatcher(String path) method on
ServletContext.
RequestDispatcher rd=context.getRequestDispatcher(String path);
| Is This Answer Correct ? | 17 Yes | 0 No |
Answer / seshendra
There are three ways to get RequestDispatcher object in the
servlet.
1. calling the getRequestDispatcher(String path) method on
ServletRequest.
RequestDispatcher rd=request.getRequestDispatcher(String path);
2. By getRequRequestDispatcher(String path) method on
ServletContext.
RequestDispatcher rd=context.getRequestDispatcher(String path);
3.by calling getNamedDispatcher(servlet logical name)on
ServletContext object
RequestDispatcher rd=context.getNamedDispatcher(servlet
logical name)
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / venkat
there are two ways.
RequestDispatcher rd=req.getRequestDispatcher("\a.jsp");
RequestDispatcher rd=sc.getRequestDispatcher("\a.jsp");
| Is This Answer Correct ? | 3 Yes | 0 No |
What are common tasks performed by Servlet Container?
If a servlet is not properly initialized, what exception may be thrown?
What's the use of servletcontext?
What is the main purpose of java servlets?
What is servlet looping or chaining?
Which java application server is the best?
Write a program to show the functionality of doget and dopost method?
What are the difference between HttpServlet and GenericServlets?
What is servlet initializer?
What is session?
What is context switching?
Which method of the httpservletrequest object is used?