| Author |
init parameters
|
Don Bosco
Ranch Hand
Joined: Oct 31, 2002
Posts: 108
|
|
What is the difference between the init parameters returned by methods(getInitParameter) in ServletContext and ServletConfig???
|
SCJP 1.4<p>Wingardium Leviosa!!
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12325
|
|
Looking at the API, we see that ServletContext init parameters are "context wide" - in other words, apply to the entire "web application" - the api says they are created with a context-param entry in web.xml as a child of the web-app element. (I can't say I have ever seen them used, but they look useful.) Whereas ServletConfig init parameters are specific to the servlet and come from the init-param tags in the web.xml section for a particular servlet. Bill
|
Java Resources at www.wbrogden.com
|
 |
 |
|
|
subject: init parameters
|
|
|