JSP Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 702 Page Views: 

What are context initialization parameters?



Posted By: Avi Date: 2 November 2010 04:59:56 PM
 Answer:

Context initialization parameters are specified by the in the web.xml file and they are for the whole application.


Posted By: avibtech


Date: 2 November 2010 04:59:56 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 2FWm2V
Related Questions
JSP : Why doesn't the focus feature on the <html:form> tag work in every circumstance?

Why doesn't the focus feature on the tag work in every circumstance?

Because there is some disagreement between the various browsers, and different versions of the same ....
Category: JSP Date: 11/8/2010 11:50:00 PM
JSP : How will you communicate from an applet to servlet?

How will you communicate from an applet to servlet?

There are three ways to communicate from an applet to servlet and they are: HTTP Communication (Text....
Category: JSP Date: 11/8/2010 11:17:58 PM
JSP : What is the using of “super.init (config)” in servlets ?

What is the using of “super.init (config)” in servlets ?

To access the ServletConfig from the servlet.
Category: JSP Date: 11/8/2010 10:12:56 PM
JSP : What is the container?

What is the container?

container is a runtime support of a system-level entity and provides components with services such a....
Category: JSP Date: 11/8/2010 8:22:59 PM
JSP : How setting a cookie?

How setting a cookie?

Cookie c = new Cookie("name","value"); response.addCookie(c);
Category: JSP Date: 11/8/2010 7:50:57 PM