What is the difference between servlet config and servlet
context.
Answer Posted / mamta singh
Servlet config is a private area for every servlet.Any
variable stored there is accessible to only that servlet
while sevlet context is a shared area for every servlet in
an application.In an aaplication every servlet can access
the variable stored in servlet context.
| Is This Answer Correct ? | 203 Yes | 20 No |
Post New Answer View All Answers
What is session?
What is the difference between Servlets and Applets?
If servlet receives multiple requests, how many objects will it create?
Why don't we write a constructor in a servlet?
Explain request dispatcher and its methods.
What is servlet in web technology?
What is the need of session tracking in web application?
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!
When jsessionid is created?
What is difference between jsp and servlet?
What do you mean by deployment descriptor?
What is string tokenizer?
What are the phases of servlet life cycle?
Explain in brief the directory structure of a web application?
Can you explain in detail 'javax.servlet' package?