How is an El initialization parameter configured in the deployment descriptor?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
How is an El initialization parameter configured in the deployment descriptor?
Rating:
An El initialization parameter initParam is configured in the deployment descriptor as follows:
<context-param>
<param-name>parameterName</param-name>
<param-value>parameterValue</param-value>
</context-param>
Here, parameterName is the name of the initialization parameter and its value is parameterValue.
The value of the initialization parameter can be obtained programmatically as follows:
Rating:
Was this information helpful?
Other articles
- What is the getAttribute() method?
- What is the WEB-INF directory?
- What are the JSP standard actions?
- What is a Front Controller?
- What is DIGEST authentication?
