欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > 文章正文

JNDI查找方式,jndi查找

来源: javaer 分享于  点击 48357 次 点评:77

JNDI查找方式,jndi查找


Three JNDI namespaces are used for portable JNDI lookups: java:globaljava: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.


相关文章

    暂无相关文章
相关栏目:

用户点评