What is servlet context ?
Answers were Sorted based on User's Feedback
Answer / veesa
sevlet context gives the information about servlet environment.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / srivani
Servlet Context Object is created by webcontainer.Through
out the web application one servlet Context Object is
created.This Context Object creates config object,For every
servlet request one config object is created,but entire web
application only one context object.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / mahesh
The servlet context is an object that contains a servlet's
view of the Web application within which the servlet is
running. Using the context, a servlet can log events, obtain
URL references to resources, and set and store attributes
that other servlets in the context can use. (answer supplied
by Sun's tutorial).
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / suresh g
Servlet context:
Servlet context is communication
between server side .Every application has only one
servlet context and is accessible to all action
resource of that application.
| Is This Answer Correct ? | 0 Yes | 0 No |
Does servlet have main method?
When a client request is sent to the servlet container, how does the container choose which servlet to invoke?
what is the control flow in servlet when we send a request?
What do you mean by cgi and what are its drawbacks?
Explain web container.
How forward () method is different from send redirect () method?
Explain the methods of request dispatcher in servlet?
What is the default http method in the servlet?
When jsessionid is created?
What do you mean by servlet?
What are the phases of servlet life cycle?
What is DSN and System DSN and what is the difference between them?