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>?

link|improve this question

62% accept rate
I don't know why, but I agree that it is confusing and annoying. – darren Jan 15 '10 at 6:42
I agree that this is not even a real question. – Bombe Jan 15 '10 at 6:44
1  
"are and but in" ? DD elements ? why is your title more descriptive than your body? – pstanton Jan 15 '10 at 6:54
feedback

2 Answers

up vote 6 down vote accepted

Servlet init parameters are for a single servlet only. No body out side that servlet can access that. It is declared inside the <servlet> tag inside Deployment Descriptor, on the other hand context init parameter is for the entire web application. Any servlet or JSP in that web application can access context init parameter. Context parameters are declared in a tag <context-param> directly inside the <web-app> tag.

The methods for accessing context init parameter is getServletContext().getInitParamter("name"). Whereas method for accessing servlet init parameter is getServletConfig().getInitParamter("name").

Ref: http://www.javacertificate.net/jsp_iqns_3.htm

link|improve this answer
feedback

As explained by Adeel Ansari, here, it depends on what object are you invoking the method getInitParameter() in the servlet code.

All servlets extends from and hence are instance of GenericServlet.

.

DD elements <context-param> can be retrieved by:

ServletContext context = this.getServletContext();
String paramValue = context.getInitParamter("paramName");

.

DD elements <init-param> both can be retrieved by:

ServletConfig config = this.getServletConfig();
String paramValue = config.getInitParamter("paramName");

Also note that since GenericServlet class implements ServletConfig interface, your servlet class is also ServletConfig (implies this = this.getServletConfig() ). Hence you can also get DD elements <init-param> directly by:

String paramValue = this.getInitParamter("paramName");

.

You can try this by having same param-name in both DD elements with different values and then print it in your servlet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.