当前位置: 技术问答>java相关
请教关于JNDI中的基本概念!
来源: 互联网 发布时间:2015-04-27
本文导语: 这段话该怎样理解: * All naming operations are relative to a context. * The initial context implements the Context interface and * provides the starting point for resolution of nam...
这段话该怎样理解:
* All naming operations are relative to a context.
* The initial context implements the Context interface and
* provides the starting point for resolution of names.
Context是名字和对象绑定的集合,这些绑定是由计算机系统提供的,JNDI是访问它们的API。可是比如UNIX文件,它有个根目录;DNS系统有com,net等根Context。难道这个InitialContext就指的是计算机系统中的各个根Context?请指教!
* All naming operations are relative to a context.
* The initial context implements the Context interface and
* provides the starting point for resolution of names.
Context是名字和对象绑定的集合,这些绑定是由计算机系统提供的,JNDI是访问它们的API。可是比如UNIX文件,它有个根目录;DNS系统有com,net等根Context。难道这个InitialContext就指的是计算机系统中的各个根Context?请指教!
|
所有的名称服务和某个CONTEXT的有关系,也就是和“上下文”有关系,初始的context实现了Context这个类的接口,指出了你在这个context中的入口点,可以这么理解:一个context是一个"name--object"的集合,为了在这个集合中寻找特定的对象,你必须先指出从哪里开始寻找。