What is the use of RequestDispatcher in servlet?
Answer Posted / yuga.reddi08
RequestDispatcher is an interface,In a web application
having multiple webcomponents to handle a single request at
time we go for RequestDispatcher.
RequestDispatcher rd=servletRequest.getRequestDispatcher
("url of the webcomponent");
rd.inculude(request,response);
rd.forward(request,response);
| Is This Answer Correct ? | 34 Yes | 27 No |
Post New Answer View All Answers
Which interface must be implemented by all servlets?
How to create war file?
What is the difference between sendredirect() and forward() in a servlet?
What is servlet and its advantages?
What is java servlet session?
What is the procedure for initializing a servlet?
What is servletconfig?
Explain get and post.
Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?
Explain is servlet mapping?
How do you find out what client machine is making a request to your servlet
How we can call a jsp from the servlet?
Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!
Describe in brief RequestDespatcher?
What is lazy loading and what is Generic Servlet Class?