public interface InitialContextFactory
JNDI框架允许在运行时指定不同的初始上下文实现。 使用初始上下文工厂创建初始上下文 。 初始上下文工厂必须实现InitialContextFactory接口,该接口提供了一种创建实现Context接口的初始上下文实例的方法。 此外,工厂类必须是公共的,并且必须有一个不接受参数的公共构造函数。
Modifier and Type | Method and Description |
---|---|
Context |
getInitialContext(Hashtable<?,?> environment)
创建起始名称解析的初始上下文。
|
Context getInitialContext(Hashtable<?,?> environment) throws NamingException
environment
提供。
环境参数由呼叫者拥有。 实现不会修改对象或保留对它的引用,尽管它可以保留对克隆或副本的引用。
environment
- 可能为空的环境指定要用于创建初始上下文的信息。
NamingException
- 如果无法创建初始上下文。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.