DD elements <context-param> and <init-param> both can be retrieved by the getInitParameter() method, in the servlet code.
Now the question is, how does it differentiate <context-param> and <init-param>?
|
DD elements Now the question is, how does it differentiate
| |||||||||
feedback
|
|
Servlet init parameters are for a single servlet only. No body out side that servlet can access that. It is declared inside the The methods for accessing context init parameter is | ||||
|
feedback
|
|
As explained by Adeel Ansari, here, it depends on what object are you invoking the method All servlets extends from and hence are instance of . DD elements
. DD elements
Also note that since
. You can try this by having same param-name in both DD elements with different values and then print it in your servlet. | ||||
|
feedback
|