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 |
Which exception is thrown if the servlet is not initialized properly?
Which interface should be implemented by all servlets?
how the server will know its the same jsp page?
Hi friends, am newbie to servlet. My interviewer asked why used servlet in your application. i used servlet for controller logic and business logic . is it correct ?
What are the jobs performed by servlets?
What are the two important api's in for servlets?
Can you use javascript in servlets?
What is the use of httpservletresponsewrapper?
What is difference between jsp and servlet?
What are the supporting protocol by HttpServlet ?
What is called Session Tracking?
Can a jsp be called using a servlet?