| Author |
ServletConfig
|
Don Bosco
Ranch Hand
Joined: Oct 31, 2002
Posts: 108
|
|
Guys correct me if i'm wrong. When a servlet is deployed, the servlet engine will look at the web.xml file of the application and builds a ServletConfig object and passes this object to the init function.
|
SCJP 1.4<p>Wingardium Leviosa!!
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12266
|
|
You are correct. ServletConfig has the servlet specific data from web.xml - ServletContext is also of interest in giving the "web application" specific data. You can find the complete set of rules which answer all questions like this for the servlet and JSP environments at java.sun.com in the form of some big .pdf files.
|
 |
Don Bosco
Ranch Hand
Joined: Oct 31, 2002
Posts: 108
|
|
|
Thanks Bill!
|
 |
 |
|
|
subject: ServletConfig
|
|
|