- 浏览: 142375 次
- 性别:
- 来自: 01
文章分类
最新评论
-
kingj:
将if(node.RightTree==null||node. ...
在二元树中找出和为某一值的所有路径 -
kingj:
非递归的算法在下面这种情况下会有问题 ...
在二元树中找出和为某一值的所有路径 -
houxinbin:
DateUtil.getTimestampFromGregor ...
使用JFreeChart显示 Java 虚拟机中的空闲内存量 -
坏小子46110:
我在build comm.js的时候有个这个异常 不知道怎么解 ...
使用Java实现登陆WebQQ(带源码) -
to_zoe_yang:
公子_小王 写道怎么下载不下来呢? 估计TX现在肯定改接口了都 ...
使用Java实现登陆WebQQ(带源码)
JNDI全攻略之(一)
关键字:JNDI,J2EE,Java,命名和目录接口,Java Naming and Directory Interface
摘要:
本文详细介绍了JNDI的架构与实现,JNDI的工作原理,并给出了具体代码,帮助读者更理解J2EE主要常用技术---JNDI.本文为系列文章的第一篇,其它相关文章会在近期推出。
名词解释
jndi是Java 命名和目录接口(Java Naming and Directory Interface,JNDI)的简称.从一开始就一直是 java 2 平台企业版(JEE)的核心技术之一。在JMS,JMail,JDBC,EJB等技术中,就大量应用的这种技术。
为什么会有jndi
jndi诞生的理由似乎很简单。随着分布式应用的发展,远程访问对象访问成为常用的方法。虽然说通过Socket等编程手段仍然可实现远程通信,但按照模式的理论来说,仍是有其局限性的。RMI技术,RMI-IIOP技术的产生,使远程对象的查找成为了技术焦点。JNDI技术就应运而生。JNDI技术产生后,就可方便的查找远程或是本地对象。
JNDI的架构与实现
JNDI的架构与JDBC的架构非常类似.JNDI架构提供了一组标准命名系统的API,这些API在JDK1.3之前是作为一个单独的扩展包jndi.jar(通过这个地址下载),这个基础API构建在与SPI之上。这个API提供如下五个包
在应用程序中,我们实际上只使到用以上几个包的中类.具体调用类及通信过程对用户来说是透明的.
JNDI API提供了访问不同JNDI服务的一个标准的统一的实现,其具体实现可由不同的 Service Provider来完成。前面讲的为第一层JNDI API层.
最下层为JNDI SPI API及其具体实现。
图中所列的一些SPI可从http://java.sun.com/products/jndi/downloads/index.html下载.
它包括了几个增强和下面的命名/目录服务提供者:
- LDAP(Lightweight Directory Access Protocol)服务提供者
- CORBA COS(Common Object Request Broker Architecture Common Object Services)命名服务提供者
- RMI(Java Remote Method Invocation)注册服务提供者
- DNS(Domain Name System)服务提供者.
- FSSP(File System Service Provider)文件系统服务提供者
- 其它服务提供者
中间层为命名管理层。其功能应该由JNDI SPI来完成。上层为JNDI API,这个API包在Java 2 SDK 1.3及以上的版本中已经包括。
前面讲解的只是作为应用程序客户端的架构实现,其服务端是由SPI对应的公司/厂商来实现的,我们只需将服务端的相关参数传给JNDI API就可以了,具体调用过程由SPI来完成.
JNDI工作原理
下面通过一个示例程序来说明JNDI工作原理(代码为自解释).
/* * Created on 2005-3-4 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package com.sily.jndi; importjava.io.FileInputStream; import java.util.Properties; importjavax.naming.Context; import javax.naming.InitialContext; /** * @author shizy * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public class TestJbossJNDI { /** * */ public TestJbossJNDI() { super(); // TODO Auto-generated constructor stub } public static void main(String[] args) { try {Properties env = new Properties(); //载入jboss的SPI相关参数,包括初始上下文工厂,服务URL,等等 env.load(newFileInputStream("jbossJndi.properties")); env.list(System.out); //通过JNDI api 初始化上下文 InitialContext ctx = newjavax.naming.InitialContext(env); System.out.println("Got context");//create a subContext ctx.createSubcontext("/sylilzy");ctx.createSubcontext("sylilzy/sily"); //rebind a objectctx.rebind("sylilzy/sily/a", "I am sily a!");ctx.rebind("sylilzy/sily/b", "I am sily b!"); //lookup contextContext ctx1=(Context)ctx.lookup("sylilzy"); Context ctx2=(Context)ctx1.lookup("/sylilzy/sily"); ctx2.bind("/sylilzy/g", "this is g"); //lookup binded object Object o; o=ctx1.lookup("sily/a");System.out.println("get object from jndi:"+o); //rename the objectctx2.rename("/sylilzy/g", "g1"); o=ctx2.lookup("g1");System.out.println("get object from jndi:"+o); } catch (Exception e) { e.printStackTrace(); } } }
结果输出如下:
-- listing properties --
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.provider.url=jnp://localhost:1099
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
Got context
get object from jndi:I am sily a!
get object from jndi:this is g
程序中jbossJndi.properties文件的内容为:
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
java.naming.provider.url=jnp://localhost:1099
注意:要正确运行示例程序,请启动jboss,并将jboss的jbossall-client.jar文件放入classpath中。
上述示例程序在jboss服务器的jndi树上建立了几个上下文,并bind了几对象,大家可通过附录中的代码或其它工具查看
查看结果为:
-----------------------------
/sylilzy/sily
-----------------------------
/sylilzy/sily/b:I am sily b!
/sylilzy/sily/a:I am sily a!
/sylilzy/sily/g1:this is g
-----------------------------
-----------------------------
上述程序中,我们的代码只涉及到了jndi API,其它细节如初始化jboss jndi的初始上下文,建立网络连接,与服务器通信,对我们来说都是透明的,另外,我们将jboss jndi的spi包中的类名作为参数传入了程序中,要访问一个远程对象,我们所做的就这么多。
下面,再提供一个例子,与上例不同,我们不需要jboss,我们使用sun的FSSP(File System Service Provider)文件系统服务提供者.注意在这个例子中要使用到前面所说的File System Service Provider for the java Naming and Directory InterfaceTM(JNDI)相关类(下载)。
/* * Created on 2005-3-1 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ packagecom.sily.jndi; import java.io.FileInputStream; import java.util.Properties; importjavax.naming.*; import javax.naming.Context; import javax.naming.InitialContext; /** * @author shizy * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public classJndiTest1 { /** * */ public JndiTest1() { super(); // TODO Auto-generated constructor stub } public static void main(String[] args) { try { Properties env = newProperties(); env.load(new FileInputStream("fileSystemService.properties"));env.put(Context.PROVIDER_URL, "file:///c:/"); Context ctx = new InitialContext(env);ctx.createSubcontext("sylilzy"); NamingEnumeration list = ctx.list("/"); while(list.hasMore()) { NameClassPair nc = (NameClassPair) list.next();System.out.println(nc); } } catch (Exception e) { e.printStackTrace(); } } }
上例中fileSystemService.properties文件的内容为:java.naming.factory.initial=com.sun.jndi.fscontext.RefFSContextFactory
这个例子较简单,运行后,它会列出C:/下所有的文件和目录,另外你会发现有一个新目录被创建了.本例不同于上例,它并不需要服务端,因为它访问的是文件系统.有关帮助可查阅包内的相关文档。
通过对比这两个例子,应该JNDI的工作原理有了一个大致的了解。
总结:
jndi技术体现了分布式应用的优点,同进它的产生也为分布式对象提供了统一的访问接口。由于篇幅所限,对目录的操作本文未作介绍,其它内容将在接下来的系列中讨论。要对JNDI技术作全面的了解,请参阅参考资料.要对于JNDI技术深入学习,仍有许多地方值得进一步了解,例如EJB容器所使用的JNDI所提供的对象就有 Local和Remote之分,对于Local Object,对于不同的JVM是不可访问的;对于远程对象的访问,还涉及到Java安全机制。
附录:
查看jboss jndi内容的代码:
//----------------------------------------
/* * Created on 2005-3-4 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ packagecom.sily.jndi; import java.io.FileInputStream; import java.util.Properties; importjavax.naming.*; import javax.naming.Context; import javax.naming.InitialContext; /** * @author shizy * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public classListJbossJndi { /** * */ public ListJbossJndi() { super(); // TODO Auto-generated constructor stub } public static void main(String[] args) { try { Properties env = newProperties(); env.load(new FileInputStream("jbossJndi.properties"));//env.list(System.out); Context ctx = new InitialContext(env);listCtx(ctx.lookup("sylilzy")); } catch (Exception e) { e.printStackTrace(); } }static void listCtx(Object o){ if(!(o instanceof Context))log(":"+o); else { log("/n-----------------------------"); try { Context ctx=(Context)o;//log(ctx.getNameInNamespace()+"/:"); NamingEnumeration list=ctx.listBindings("");while(list.hasMore()){ Binding bind=(Binding)list.next();log("/n/"+ctx.getNameInNamespace()+"/"+bind.getName()); listCtx(bind.getObject()); }log("/n-----------------------------"); } catch (NamingException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } static void log(Object o){System.out.print(o); } }
JNDI全攻略之(二)
关键字:JNDI,J2EE,Java,命名和目录接口,Java Naming and Directory Interface
摘要:本文详细介绍了JNDI的目录相关内容,并以DNS Service Provider为例进行了示例代码的演示.本文为系列文章的第二篇,JNDI的基础内容请见本系列的第一篇
总述:
目录(Directory)可看作是对命名(Naming)的一个扩充,一个目录对象不仅像命名一样,而且还提供的对属性(Attributes)的操作.由API文档可知,javax.naming.directory.DirContext 类扩展自Context接口,同样,javax.naming.directory.InitialDirContext也扩展自javax.naming.InitialContext,由此也可看出目录操作完全支持命名操作。下面给出一个DNS Service Provider例子以演示有关目录的一些操作:
* Created on 2005-11-17
package com.sily.jndi;
import java.util.Properties;
/**
* Description:
*
* @author shizy
* @version 1.0 date:2005-11-17
*/
public class TestDNSJndi {
public static void main(String[] args) throws Exception {
Properties env = new Properties();
env.put(Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.dns.DnsContextFactory");
//此IP一定要为要访问的DNS服务器的IP,可通过网络设置查看
env.put(Context.PROVIDER_URL, "dns://10.17.45.239");
DirContext ctx = new InitialDirContext(env);
System.out.println("a:" + ctx);
DirContext ctx1 = (DirContext) ctx.lookup("www.sina.com");
System.out.println("b:" + ctx1);
printAttributes("c:", ctx1.getAttributes(""));
//从ctx.getAttributes("www.sina.com")与ctx1.getAttributes("")结果一样
printAttributes("d:", ctx.getAttributes("www.sina.com"));
Attributes attrs1 = ctx.getAttributes("www.sina.com",
new String[] { "a" });
Attributes attrs2 = ctx.getAttributes("www.163.com",
new String[] { "a" });
Attributes attrs3 = ctx1.getAttributes("", new String[] { "a" });
Attributes attrs4 = ctx.getAttributes("www.baidu.com",
new String[] { "a" });
printAttributes("e:", attrs1);
printAttributes("f:", attrs2);
printAttributes("g:", attrs3);
printAttributes("attrs4:", attrs4);
System.out.println("nameParse:"+ctx1.getNameInNamespace());
//list,此方法会导致程序lock
//listEnumation("list:",ctx.list(""));
//----------------------search
Attributes matchAttrs = new BasicAttributes(true);
matchAttrs.put(new BasicAttribute("a", "61.172.201.13"));
NamingEnumeration answer = ctx1.search("www.sina.com", matchAttrs);
printNamingEnumeration("search :", answer);
}
public static void printAttributes(String tag, Attributes attres)
throws Exception {
for (NamingEnumeration ae = attres.getAll(); ae.hasMore();) {
Attribute attr = (Attribute) ae.next();
System.out
.println(tag
+ "-----------------------------------------------\nattribute: "
+ attr.getID());
/* Print each value */
for (NamingEnumeration e = attr.getAll(); e.hasMore(); System.out
.println("value: " + e.next()))
;
}
}
public static void listEnumation(String tag, NamingEnumeration name)
throws Exception {
for (; name.hasMore();) {
NameClassPair nameClass = (NameClassPair) name.next();
System.out
.println(tag
+ "-----------------------------------------------\nattribute: "
+ nameClass.getName() + ":"
+ nameClass.getClassName());
}
}
public static void printNamingEnumeration(String tag, NamingEnumeration e)
throws Exception {
for (; e.hasMore();) {
Attribute attr = (Attribute) e.next();
System.out
.println(tag
+ "-----------------------------------------------\nattribute: "
+ attr.getID());
/* Print each value */
for (NamingEnumeration ve = attr.getAll(); ve.hasMore(); System.out
.println("value: " + ve.next()))
;
}
}
}
上例中,在jdk1.4中可运行通过。对于DNS Service Provider更详细的文档,大家可通过此URL下载:http://java.sun.com/products/jndi/downloads/index.html
上例一个可能运行结果如下:
a:javax.naming.directory.InitialDirContext@1bf216a
b:com.sun.jndi.dns.DnsContext@3a6727
c:-----------------------------------------------
attribute: CNAME
value: us.sina.com.cn.
d:-----------------------------------------------
attribute: CNAME
value: us.sina.com.cn.
e:-----------------------------------------------
attribute: A
value: 218.30.66.67
value: 218.30.66.68
value: 218.30.66.69
value: 218.30.66.70
value: 218.30.66.71
value: 218.30.66.56
value: 218.30.66.57
value: 218.30.66.58
value: 218.30.66.59
value: 218.30.66.60
value: 218.30.66.61
value: 218.30.66.62
value: 218.30.66.63
value: 218.30.66.64
value: 218.30.66.65
value: 218.30.66.66
f:-----------------------------------------------
attribute: A
value: 220.181.28.42
g:-----------------------------------------------
attribute: A
value: 218.30.66.68
value: 218.30.66.69
value: 218.30.66.70
value: 218.30.66.71
value: 218.30.66.56
value: 218.30.66.57
value: 218.30.66.58
value: 218.30.66.59
value: 218.30.66.60
value: 218.30.66.61
value: 218.30.66.62
value: 218.30.66.63
value: 218.30.66.64
value: 218.30.66.65
value: 218.30.66.66
value: 218.30.66.67
attrs4:-----------------------------------------------
attribute: A
value: 220.181.27.5
nameParse:www.sina.com.
Exception in thread "main" javax.naming.OperationNotSupportedException
at com.sun.jndi.dns.DnsContext.c_search(Unknown Source)
at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_search(Unknown Source)
at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(Unknown Source)
at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(Unknown Source)
at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(Unknown Source)
at com.sily.jndi.TestDNSJndi.main(TestDNSJndi.java:57)
示例分析:
通过分析代码,我们可以看出我们从DNS服务器获取了指定域名的IP地址,而且可以看出www.sina.com有多个IP.
另外,可以看出从ctx.getAttributes("www.sina.com")得到的结果与ctx1.getAttributes("")结果一样,这便是目录操作的两种模式,这两种模式取得的结果是一样的,这点可以参考API文档(http://java.sun.com/j2se/1.5.0/docs/api/javax/naming/directory/DirContext.html):
There are two basic models of what attributes should be associated with. First, attributes may be directly associated with a DirContext object. In this model, an attribute operation on the named object is roughly...
另外,还有一点需要注意,从ctx.getAttributes()方法返回的Attributes中包含多个Attribute,每个Attribute包含多个values,其它详细内容请参考API文档
最后,代码NamingEnumeration answer = ctx1.search("www.sina.com", matchAttrs);试图对ctx1进行属性查找,但是抛出了异常,查看 DNS Service Provider 的文档可知,DNS Service Provider 没有提供对search方法的支持,大家可用其它的SP来测试此方法,如LDAP SP
总结:
此例只是简单地演示的JNDI的目录操作,对于目录操作的其它高级主题如Search,Search Scope,Count Limit,Composite Names 等没有详细介绍,请参考其它相关文档.
作者简介:
施祖阳,网名sylilzy,1979年生。
2002年起从事软件开发工作,主要研究为JAVA、Linux及相关技术。
你可通过sylilzy@163.com与作者联系。
PS:有一位Javaer希望主页君发一些关于JNDI的文章,主页君也不甚了解,找了一下在CSDN找到一篇比较不错的文章,但是时间有点早,不知大家是否认可。
相关推荐
-jndi <arg> JNDI地址 weblogic JNDI注入选这项填入地址 -Jport <arg> JRMPListener监听 输入监听端口,在本机开启JRMPListener输 -os <arg> window/linux 目标主机系统 不选默认为window -P <arg> Remote Port ...
附录<br>附录A SQL入门<br>什么是SQL<br>什么是数据库<br>关系数据库基础<br>关系数据库的优点和缺点<br>SQL:数据定义<br>基本数据操作<br>数据完整性<br>表达式<br>连接<br>合并<br>子查询<br>小结<br>附录B 序列...
<br>UltraEdit 7.2<br>WebGain Studio 4 with VisualCafe<br>Forte for ...<br>JNDI技术白皮书<br>Servlets概述<br>Servlet2.1规范<br>Java 在Client/Server 网络中的应用<br>Java 编程技术中汉字问题的分析及解决<br>...
<br><br><br>测试代码完成测试<br><br> 报错:Cannot instantiate class: org.jnp.interfaces.NamingContextFactory<br><br> 添加 引用<br><br>继续报错是因为JNDI访问名称错误,也是用了原来的那个了。哈哈。...
J2EE <br>8.1 J2SDKEE的安装和使用 <br>8.1.1 软硬件的支持 <br>8.1.2 ...<br>8.2.7 JNDI服务器主机 <br>8.2.8 HTTP服务的发布目录 <br>8.3 WebLogic的安装和使用 <br>8.3.1 软硬件要求 <br>8.3.2 安装和启动 <br>8.4...
ReadTestquestion<br>7.5. 课程设计作业<br>第8章 日历记事本<br>8.1. 设计内容<br>8.2. 设计要求<br>8.3. 总体设计<br>8.4. 具体设计<br>8.4.1. 运行效果与程序发布<br>8.4.2. 主类CalendarPad<br>8.4.3. 记事本...
version="2.4"><br> <description>MySQL Connection</description><br> <resource-ref><br> <description>DB Connection</description><br> <res-ref-name>jdbc/mysql</res-ref-name><br> <res-type>javax.sql....
<title>JNDI Example</title> </head> <body> <% DataSource ds = getDataSource(); if (ds != null) { out.println("DataSource obtained successfully!"); } else { out.println("Failed to obtain ...
绑定SessionFactory到JNDI<br>3.5.7. 查询语言替换 <br>3.6. Logging<br>3.7. 实现NamingStrategy(命名策略)<br>3.8. XML配置文件<br>4. 持久化类(Persistent Classes)<br>4.1. POJO简单示例<br>4.1.1. 为持久化...
绑定SessionFactory到JNDI<br>3.5.7. 查询语言替换 <br>3.6. Logging<br>3.7. 实现NamingStrategy(命名策略)<br>3.8. XML配置文件<br>4. 持久化类(Persistent Classes)<br>4.1. POJO简单示例<br>4.1.1. 为持久化...
数据源 JNDI名字 mysource<br>23. 三级下拉列表框联动菜单?<br>24. 在JSP中如何调用浏览器中的"另存为"功能?<br>25. 网页全屏显示<br>26. 求两个日期相隔了多少天:输入时间格式为(yyyy-mm-dd)<br>27. 上传文件...
<Context path="/JNDI" reloadable="true" docBase="E:\workspace\JNDI" workDir="E:\workspace\JNDI\work"> <Resource name="jdbc/JNDI" auth="Container" type="javax.sql.DataSource"/> <ResourceParams name=...
在`<Context>`标签内,我们需要添加一个名为`jdbc/quickstart`的`<Resource>`标签,声明一个共享的JDBC数据源。这里,我们设置了连接池的基本属性,包括数据源工厂、数据库URL、驱动类名、用户名和密码。例如: ```...
观察者模式 Observer:Swing中的事件模型<br>工厂模式 Factory:在JDK中遍地都是,比如JDBC、JNDI等,是学习Spring的基础<br>命令模式 Command:Struts框架的基石<br>单例模式 Singleton:最简单的设计模式,大量...
<jndi-name>jdbc/mysql</jndi-name> <driver type="org.gjt.mm.mysql.Driver"> <url>jdbc:mysql://localhost:3306/test</url> <user></user> <password></password> </driver> <prepared-statement-cache-...
<br>☆ Java Naming and Directory Interface (JNDI,Java名字与目录接口) <br>☆ XML <br>☆ J2EE Connector Architecture (J2EE连接器架构) <br>☆ JavaMail <br>☆ JDBC<br><br>当你...
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName"> <value>java:comp/env/jdbc/source_name</value> </property> </bean> ``` - **jndiName**:对应...
☆ Java Naming and Directory Interface (JNDI,Java名字与目录接口) <br> ☆ XML <br> ☆ J2EE Connector Architecture (J2EE连接器架构) <br> ☆ JavaMail <br> ☆ JDBC<br><br> 当你准备创建自己的大型...