| Author |
question on context-param
|
rick collette
Ranch Hand
Joined: Mar 22, 2002
Posts: 208
|
|
hi, guys: The params defined between <context-param></context-param> are accessible by all servlets. I am wondering how I am able to put params accessible by all servlets and paran accessible by ony one specific servlet together in deployment descriptor? Could anyone give an example? Thanks.
|
 |
Clark Bruce
Greenhorn
Joined: Feb 27, 2002
Posts: 17
|
|
Rick, The DD would look like this. <web-app> <context-param> <param-name> TheParam </param-name> <param-value> ParamValue </param-value> </context-param> <servlet> <servlet-name> MyServlet </servlet-name> <servlet-class> ServletOne </servlet-class> <init-param> <param-name> MyServletParam </param-name> <param-value> ValueForMyServlet </param-value> </init-param> </servlet> Regards, Clark
|
 |
Clark Bruce
Greenhorn
Joined: Feb 27, 2002
Posts: 17
|
|
Rick, Be sure to close </web-app> in above example. Sorry, Clark
|
 |
Craig Jackson
Ranch Hand
Joined: Mar 19, 2002
Posts: 405
|
|
That's correct. Here is another example: The <context-param> element will provide the ability to make parameters global to a specific web application. While the sub-elemnent <init-param> of the <servlet> element will provide the apility to make parameters available to an individual servlet.
|
 |
rick collette
Ranch Hand
Joined: Mar 22, 2002
Posts: 208
|
|
Thank you very much, Clark and CJ: Your examples are very helpful.
|
 |
 |
|
|
subject: question on context-param
|
|
|