public interface InitialContextFactoryBuilder
JNDI框架允许在运行时指定不同的初始上下文实现。 使用初始上下文工厂创建初始上下文。 程序可以安装自己的构建器来创建初始上下文工厂,从而覆盖框架使用的默认策略,方法是调用NamingManager.setInitialContextFactoryBuilder()。 InitialContextFactoryBuilder接口必须由这样的构建器实现。
Modifier and Type | Method and Description |
---|---|
InitialContextFactory |
createInitialContextFactory(Hashtable<?,?> environment)
使用指定的环境创建一个初始上下文工厂。
|
InitialContextFactory createInitialContextFactory(Hashtable<?,?> environment) throws NamingException
环境参数由呼叫者拥有。 实现不会修改对象或保留对它的引用,尽管它可以保留对克隆或副本的引用。
environment
- 用于创建初始上下文实现的环境。
可以为null。
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.