XBean > Home > Features > JAXB JNDI

JNDI Provider using JAXB2

This XBean module implements a JNDI context by parsing an XML configuration file using the excellent JAXB2 library.

To use this JNDI provider just set the initial context factory then point the PROVIDER_URL to the XML configuration file URL.

Example

Hashtable env = new Hashtable();
env.put(Context.PROVIDER_URL, "file:foo/bar.xml");
env.put(Context.INITIAL_CONTEXT_FACTORY, "org.apache.xbean.jaxb.jndi.JaxbInitialContextFactory");
InitialContext context = new InitialContext(env);

There is an example XML file here.