I\'d like to store connection URLs in a JNDI binding for my Tomcat application. Since Tomcat uses context.xml
for JNDI resource defining, I need to figure out the p
You can configure named values that will be made visible to the web application as servlet context initialization parameters by nesting elements inside this element. For example, you can create an initialization parameter like this:
...
...
This is equivalent to the inclusion of the following element in the web application deployment descriptor (/WEB-INF/web.xml):
companyName
My Company, Incorporated
Your java code looks like this
ServletContext sc = getServletContext();
String companyName = sc.getInitParameter("companyName");
Please see the reference http://tomcat.apache.org/tomcat-7.0-doc/config/context.html