Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

JNDI Provider using JAXB2

This XBean module (currently not released and in the sandbox) 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

Code Block
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.