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


Please Help Members By Posting Answers For Below Questions

Whether we can get deadlock situation in servlets?

578


Which is the methods of generated servlet?

686


Name the packages that work with servlet?

550


How do we translate jsp?

578


If servlet receives multiple requests, how many objects will it create?

833






Define the servlet mapping.

549


List out difference between a JavaBean from a Servlet?

568


How to get the server information in a servlet?

690


What is the dispatcher servlet?

518


What is the purpose of inter-servlet communication?

597


What is servlet looping or chaining?

662


Explain is servlet mapping?

586


Can we override destroy method in servlet?

507


What is meant by a web application

543


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!

1842