EJB - JNDI 绑定


JNDI 代表 Java 命名和目录接口。它是一组API和服务接口。基于 Java 的应用程序使用 JNDI 进行命名和目录服务。在 EJB 上下文中,有两个术语。

  • 绑定- 这是指为 EJB 对象分配一个名称,稍后可以使用。

  • 查找- 这是指查找并获取 EJB 对象。

在Jboss中,会话bean默认以以下格式绑定在JNDI中。

  • 本地- EJB 名称/本地

  • 远程- EJB 名称/远程

如果 EJB 与 <application-name>.ear 文件捆绑在一起,则默认格式如下 -

  • 本地- 应用程序名称/ejb 名称/本地

  • 远程- 应用程序名称/ejb 名称/远程

默认绑定示例

请参阅EJB - 创建应用程序一章的 JBoss 控制台输出。

JBoss应用服务器日志输出

...
16:30:02,723 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=EjbComponent.jar,name=LibrarySessionBean,service=EJB3
16:30:02,723 INFO  [EJBContainer] STARTED EJB: com.tutorialspoint.stateless.LibrarySessionBean ejbName: LibrarySessionBean
16:30:02,731 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

   LibrarySessionBean/remote - EJB3.x Default Remote Business Interface
   LibrarySessionBean/remote-com.tutorialspoint.stateless.LibrarySessionBeanRemote - EJB3.x Remote Business Interface
...

定制装订

以下注释可用于自定义默认 JNDI 绑定 -

  • 本地- org.jboss.ejb3.LocalBinding

  • 远程- org.jboss.ejb3.RemoteBindings

更新 LibrarySessionBean.java。请参阅EJB - 创建应用程序章节。

库会话Bean

package com.tutorialspoint.stateless;
 
import java.util.ArrayList;
import java.util.List;
import javax.ejb.Stateless;
 
@Stateless
@LocalBinding(jndiBinding="tutorialsPoint/librarySession")
public class LibrarySessionBean implements LibrarySessionBeanLocal {
    
    List<String> bookShelf;    
    
    public LibrarySessionBean() {
       bookShelf = new ArrayList<String>();
    }
    
    public void addBook(String bookName) {
       bookShelf.add(bookName);
    }    
 
    public List<String> getBooks() {
        return bookShelf;
    }
}

LibrarySessionBeanLocal

package com.tutorialspoint.stateless;
 
import java.util.List;
import javax.ejb.Local;
 
@Local
public interface LibrarySessionBeanLocal {
 
    void addBook(String bookName);
 
    List getBooks();
    
}

构建项目,在 Jboss 上部署应用程序,并在 Jboss 控制台中验证以下输出 -

...
16:30:02,723 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=EjbComponent.jar,name=LibrarySessionBean,service=EJB3
16:30:02,723 INFO  [EJBContainer] STARTED EJB: com.tutorialspoint.stateless.LibrarySessionBean ejbName: LibrarySessionBean
16:30:02,731 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

   tutorialsPoint/librarySession - EJB3.x Default Local Business Interface
   tutorialsPoint/librarySession-com.tutorialspoint.stateless.LibrarySessionBeanLocal - EJB3.x Local Business Interface
...