Provides an overview of the local JNDI namespace. The Java EE platform specification defines the following JNDI contexts:
java:comp
- The namespace is scoped to the current component (i.e. EJB)java:module
- Scoped to the current modulejava:app
- Scoped to the current applicationjava:global
- Scoped to the application serverIn addition to the standard namespaces, ${build.shortName} also provides the following two global namespaces:
java:jboss
java:/
Please note that only entries within the java:jboss/exported context are accessible over remote JNDI. For web deployments java:comp
is aliased to java:module
, so EJB's deployed in a war do not have their own comp namespace.