Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is ServletContext() and what is its use?

Answer Posted / shyam

if u want to use any data which is common for all use and
common to all servlet ,that data can be specified as context
parameters in the web.xml as follows.
<context-param>
<param-name>city</param-name>
<param-value>bangalore</param-value>
</context-param>
web container collects data from web.xml and stores that in
servlet context objects as context parameters.
As a developer,you can collect that data form context object
as follows.
String ci=context.getIntParameters("city").
All the servlets will have only one servlet context object
and can be shared with all servlets running in the container.
i.e: one web application will have one servletcontext object.

Is This Answer Correct ?    53 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the workflow of a servlet?

1121


Which event is fired at the time of session creation and destroy?

1322


how the HTML data stored in web server?

2549


List out difference between a JavaBean from a Servlet?

968


How to commuincate between an applet and a servlet?

987


What are the different methods of session management in servlets?

943


What is the major difference between servlet and applet?

944


What are life cycle methods of a servlet?

1006


What do you mean by interservlet communication?

1013


What is the main purpose of java servlets?

1000


What do you mean by cgi?

917


request parameter how to find whether a parameter exists in the request object?

955


What are the steps involved in placing a servlet within a package?

1030


What is a servlet engine?

968


What is called a session?

1116