what is the difference between ServletContext and
ServletConfig?
Answers were Sorted based on User's Feedback
Answer / devarathnam chinnakotla. banga
Hi,
ServletContext: ServletContext is a view of webapplication,
there will be only one servletcontext for one
webapplication. It acts as shared memoty area, all the
components of a webapplication can access the data from
servletcontext object.
ServletConfig: ServletConfig will be specific to each
servlet. If your webapplication contains 20 servlets then,
there will be 20 servletsconfig objects.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / sunil kumar- vizag
Servlet Context: Servlet Context defines a set of methods
that a servlet uses to communicate with its servlet container.
Servlet Config: A servlet configuration object used by a
servlet container passes information to a servlet during
initialization.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / raghu
Servlet Context -> It is one for the web application.
Servlet Config -> It is one for the Servlet.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / durairaj
ServletContext represents the unique configuration of particular webapplication in the WebContainer.The parameters set in the ServletContext can be retrieved universally in the particular webapplication
ServletConfig represents the unique configuration of a particular Servlet in the Webapplication.The parameters set in the ServletConfig can be retrieved universally in the particular Servlet class only(not outside)
| Is This Answer Correct ? | 2 Yes | 1 No |
What is the use of interceptor?
What are the major differences between html tags and strut specific html tags?
What is the purpose of @emailvalidator annotation?
Hi Friends, why struts introduced in to web application. Plz dont send any links . Need main reason for implementing struts. Thanks Prakash
Can you give an overview of how a struts application flows?
What should be the name of xml file used for validation in struts?
Difference between html tags and struts specific html tags
how to connect from struts to database through hibernet and where u can modify the class
how you provide security in your banking project
How to add ms-word file in struts at the same time how to add images
What do you mean by a custom tag?
Explain design patterns which is used in struts?