- All Implemented Interfaces:
Context
- Direct Known Subclasses:
InitialDirContext
All naming operations are relative to a context. The initial context implements the Context interface and provides the starting point for resolution of names.
When the initial context is constructed, its environment is initialized with properties defined in the environment parameter passed to the constructor, and in any application resource files.
JNDI determines each property's value by merging the values from the following two sources, in order:
- The first occurrence of the property from the constructor's environment parameter and system properties.
-
The application resource files (
jndi.properties
).
Context
),
all of the values are
concatenated into a single colon-separated list. For other
properties, only the first value found is used.
The initial context implementation is determined at runtime.
The default policy uses the environment property
"java.naming.factory.initial
",
which contains the class name of the initial context factory.
An exception to this policy is made when resolving URL strings, as described
below.
When a URL string (a String
of the form
scheme_id:rest_of_name) is passed as a name parameter to
any method, a URL context factory for handling that scheme is
located and used to resolve the URL. If no such factory is found,
the initial context specified by
"java.naming.factory.initial"
is used. Similarly, when a
CompositeName
object whose first component is a URL string is
passed as a name parameter to any method, a URL context factory is
located and used to resolve the first name component.
See NamingManager.getURLContext()
for a description of how URL
context factories are located.
This default policy of locating the initial context and URL context
factories may be overridden
by calling
NamingManager.setInitialContextFactoryBuilder()
.
NoInitialContextException is thrown when an initial context cannot be instantiated. This exception can be thrown during any interaction with the InitialContext, not only when the InitialContext is constructed. For example, the implementation of the initial context might lazily retrieve the context only when actual methods are invoked on it. The application should not have any dependency on when the existence of an initial context is determined.
When the environment property "java.naming.factory.initial" is non-null, the InitialContext constructor will attempt to create the initial context specified therein. At that time, the initial context factory involved might throw an exception if a problem is encountered. However, it is provider implementation-dependent when it verifies and indicates to the users of the initial context any environment property- or connection- related problems. It can do so lazily--delaying until an operation is performed on the context, or eagerly, at the time the context is constructed.
An InitialContext instance is not synchronized against concurrent access by multiple threads. Multiple threads each manipulating a different InitialContext instance need not synchronize. Threads that need to access a single InitialContext instance concurrently should synchronize amongst themselves and provide the necessary locking.
- Since:
- 1.3, JNDI 1.1
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Context
Field holding the result of calling NamingManager.getInitialContext().protected boolean
Field indicating whether the initial context has been obtained by calling NamingManager.getInitialContext().The environment associated with this InitialContext.Fields declared in interface javax.naming.Context
APPLET, AUTHORITATIVE, BATCHSIZE, DNS_URL, INITIAL_CONTEXT_FACTORY, LANGUAGE, OBJECT_FACTORIES, PROVIDER_URL, REFERRAL, SECURITY_AUTHENTICATION, SECURITY_CREDENTIALS, SECURITY_PRINCIPAL, SECURITY_PROTOCOL, STATE_FACTORIES, URL_PKG_PREFIXES
-
Constructor Summary
ConstructorsModifierConstructorDescriptionConstructs an initial context.protected
InitialContext
(boolean lazy) Constructs an initial context with the option of not initializing it.InitialContext
(Hashtable<?, ?> environment) Constructs an initial context using the supplied environment. -
Method Summary
Modifier and TypeMethodDescriptionaddToEnvironment
(String propName, Object propVal) Adds a new environment property to the environment of this context.void
Binds a name to an object.void
Binds a name to an object.void
close()
Closes this context.composeName
(String name, String prefix) Composes the name of this context with a name relative to this context.composeName
(Name name, Name prefix) Composes the name of this context with a name relative to this context.createSubcontext
(String name) Creates and binds a new context.createSubcontext
(Name name) Creates and binds a new context.void
destroySubcontext
(String name) Destroys the named context and removes it from the namespace.void
destroySubcontext
(Name name) Destroys the named context and removes it from the namespace.static <T> T
A static method to retrieve the named object.static <T> T
A static method to retrieve the named object.protected Context
Retrieves the initial context by callingNamingManager.getInitialContext()
and cache it in defaultInitCtx.Hashtable
<?, ?> Retrieves the environment in effect for this context.Retrieves the full name of this context within its own namespace.getNameParser
(String name) Retrieves the parser associated with the named context.getNameParser
(Name name) Retrieves the parser associated with the named context.protected Context
getURLOrDefaultInitCtx
(String name) Retrieves a context for resolving the string namename
.protected Context
getURLOrDefaultInitCtx
(Name name) Retrieves a context for resolvingname
.protected void
Initializes the initial context using the supplied environment.Enumerates the names bound in the named context, along with the class names of objects bound to them.