What is the difference between callling a RequestDispatcher
using ServletRequest and ServletContext?
Answer Posted / mahesh
We can give relative URL when we use ServletRequest and not
while using ServletContext.
Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Why is a constructor needed in a servlet even if we use the init method?
Explains the differences between context.getrequestdispatcher() and request.getrequestdispatcher()?
What is cookie? Why is cookie used?
Is servlet synchronized?
Why is init() method is used in servlets?
When servlet object is created?
When to use doget() and when dopost()?
What is Request Dispatcher?
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!
How are filters?
What is the process to implement doget and dopost methods?
What do you mean by deployment descriptor?
If servlet receives multiple requests, how many objects will it create?
What’s the difference between sendredirect and forward methods
What's the difference between servlets and applets?