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 exactly are the functions of servlet?

1161


What are the advantages of Servlet over CGI?

1202


how many jsp scripting elements are there and what are those?

1063


What is the process for chaining servlet?

1104


Explains the differences between context.getrequestdispatcher() and request.getrequestdispatcher()?

1098


What is a servlet engine?

1098


What is a generic servlet?

1004


How can we achieve transport layer security for our web application?

1098


What is MIME Type?

1202


What is servlet name in web xml?

1042


What is the difference between 2 types of servlets?

1194


How can we create deadlock situation in servlet?

1488


What do you mean by the servlet chaining?

1144


What is servlet and its advantages?

1106


Explain the difference between servlet and cgi?

1212