Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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...)

like image 365
Kirn Avatar asked Nov 16 '10 15:11

Kirn


1 Answers

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");
like image 173
stjohnroe Avatar answered Oct 21 '22 19:10

stjohnroe