您的位置:首页 > 编程语言 > Java开发

JNDI查找方式

2015-11-24 16:54 381 查看
Three JNDI namespaces are used for portable JNDI lookups: java:global, java:module,
and java:app.

The java:global JNDI namespace is the portable way of finding remote enterprise beans using JNDI lookups. JNDI addresses are of the following form:

java:global[/application name]/module name/enterprise bean name[/interface name]

Application name and module name default to the name of the application and module minus the file extension. Application names are required only if the application is packaged within an EAR. The interface name is required only if the enterprise bean implements
more than one business interface.

The java:module namespace is used to look up local enterprise beans within the same module. JNDI addresses using thejava:module namespace
are of the following form:

java:module/enterprise bean name/[interface name]

The interface name is required only if the enterprise bean implements more than one business interface.

The java:app namespace is used to look up local enterprise beans packaged within the same application. That is, the enterprise bean is packaged within an
EAR file containing multiple Java EE modules. JNDI addresses using the java:app namespace are of the following form:

java:app[/module name]/enterprise bean name[/interface name]

The module name is optional. The interface name is required only if the enterprise bean implements more than one business interface.

For example, if an enterprise bean, MyBean, is packaged within the web application archive myApp.war,
the module name is myApp. The portable JNDI name is java:module/MyBean An
equivalent JNDI name using the java:global namespace isjava:global/myApp/MyBean.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  java JNDI