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 |
How long do servlets last?
How do we share data using 'getservletcontext ()?
Is that servlet is pure java object or not?
Why don't we write a constructor in a servlet?
Explain Action Servlet?
What are advantages of servlets over cgi?
What is the main purpose of java servlets?
What are the exceptions thrown by servlets? Why?
Difference between web container & web server........... Difference between web server & application server?????????
Explain the difference between jsp and servlet?
What is url encoding and url decoding
What is the inter-servlet communication?