How can I read context parameter/web.xml values in a non-servlet java file?

Kirn picture Kirn · Nov 16, 2010 · Viewed 47.5k times · Source

I've got a regular java file that I use to update and query a mysql database but I need to take configurable options in that file (like host name, password, etc) and put it in the web.xml file (or perhaps another file if that's an option, but ideally in web.xml).

But I don't know how to get access to web.xml values from a regular non-servlet java file.

Or would I need to read the xml (like any other xml file... or is there a shortcut route to this...)

Answer

stjohnroe picture stjohnroe · Nov 16, 2010

You need to put the required parameters in env-entry entries of your web.xml file:

<env-entry> 
    <env-entry-name>dbhost</env-entry-name>
    <env-entry-type>java.lang.String</env-entry-type>
    <env-entry-value>localhost</env-entry-value> 
</env-entry>

and then access them via the jndi context

import javax.naming.Context;
import javax.naming.InitialContext;
...
// Get the base naming context
Context env = (Context)new InitialContext().lookup("java:comp/env");

// Get a single value
String dbhost = (String)env.lookup("dbhost");