Ejb 简明教程

EJB - Query Language

EJB Query Language 在编写自定义查询时非常方便,无需担心底层数据库详细信息。它与 HQL(Hibernate 查询语言)非常相似,通常被称为 EJBQL。

为了在 EJB 中演示 EJBQL,我们将执行以下任务 −

  1. Step 1 − 在数据库中创建表。

  2. Step 2 − 创建一个具有业务的自无状态 EJB。

  3. Step 3 − 更新无状态 EJB。添加方法,以通过实体管理器添加记录并从数据库获取记录。

  4. Step 4 − 基于控制台的应用程序客户端将访问无状态 EJB 以在数据库中持久保存数据。

Create Table

在默认数据库 postgres 中创建一个表 books

CREATE TABLE books (
   id     integer PRIMARY KEY,
   name   varchar(50)
);

Create a Model Class

public class Book implements Serializable{

   private int id;
   private String name;

   public Book() {
   }

   public int getId() {
      return id;
   }
   ...
}

Create Stateless EJB

@Stateless
public class LibraryPersistentBean implements LibraryPersistentBeanRemote {

   public void addBook(Book book) {
     //persist book using entity manager
   }

   public List<Book> getBooks() {
     //get books using entity manager
   }
   ...
}

在构建 EJB 模块后,我们需要一个客户端来访问无状态 bean,我们将在下一节中创建。

Example Application

让我们创建一个测试 EJB 应用程序来测试 EJB 数据库访问机制。

Step

Description

1

按照 EJB - 创建应用程序章节中的说明,使用名称 EjbComponent 在包 com.tutorialspoint.entity 中创建一个项目。您也可以使用在 EJB - 创建应用程序章节中创建的项目,以便理解本章节中的 EJB 数据访问概念。

2

在包 com.tutorialspoint.entity 中创建 Book.java,然后按照如下所示修改。

3

按照 EJB - 创建应用程序章节中的说明创建 LibraryPersistentBean.java 和 LibraryPersistentBeanRemote,然后按照如下所示修改。

4

清理并构建应用程序以确保业务逻辑按需求工作。

5

最后,以 jar 文件的形式将应用程序部署在 JBoss 应用程序服务器上。如果 JBoss 应用程序服务器尚未启动,它会自动启动。

6

现在按照 EJB - 创建应用程序章节的主题 Create Client to access EJB 中的说明,以相同的方式创建 EJB 客户端(控制台应用程序)。按照如下所示修改。

EJBComponent (EJB Module)

Book.java

package com.tutorialspoint.entity;

import java.io.Serializable;

public class Book implements Serializable{

   private int id;
   private String name;

   public Book() {
   }

   public int getId() {
      return id;
   }

   public void setId(int id) {
      this.id = id;
   }

   public String getName() {
      return name;
   }

   public void setName(String name) {
      this.name = name;
   }
}

LibraryPersistentBeanRemote.java

package com.tutorialspoint.stateless;

import com.tutorialspoint.entity.Book;
import java.util.List;
import javax.ejb.Remote;

@Remote
public interface LibraryPersistentBeanRemote {
   void addBook(Book bookName);
   List<Book> getBooks();
}

LibraryPersistentBean.java

package com.tutorialspoint.stateless;

import com.tutorialspoint.entity.Book;
import java.util.List;
import javax.ejb.Stateless;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;

@Stateless
public class LibraryPersistentBean implements LibraryPersistentBeanRemote {

   public LibraryPersistentBean() {
   }

   @PersistenceContext(unitName="EntityEjbPU")
   private EntityManager entityManager;

   public void addBook(Book book) {
      entityManager.persist(book);
   }

   public List<Book> getBooks() {
      //create an ejbql expression
      String ejbQL = "From Book b where b.name like ?1";
      //create query
      Query query = entityManager.createQuery(ejbQL);
      //substitute parameter.
      query.setParameter(1, "%test%");
      //execute the query
      return query.getResultList();
   }
}
  1. 在 JBOSS 上部署 EjbComponent 项目后,请注意 jboss 日志。

  2. JBoss 已经为我们的会话 bean 自动创建了 JNDI 条目 - LibraryPersistentBean/remote

  3. 我们将使用此查找字符串获取类型为 − com.tutorialspoint.stateless.LibraryPersistentBeanRemote 的远程业务对象

JBoss Application Server Log Output

...
16:30:01,401 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
   LibraryPersistentBean/remote - EJB3.x Default Remote Business Interface
   LibraryPersistentBean/remote-com.tutorialspoint.stateless.LibraryPersistentBeanRemote - EJB3.x Remote Business Interface
16:30:02,723 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=EjbComponent.jar,name=LibraryPersistentBeanRemote,service=EJB3
16:30:02,723 INFO  [EJBContainer] STARTED EJB: com.tutorialspoint.stateless.LibraryPersistentBeanRemote ejbName: LibraryPersistentBean
16:30:02,731 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

   LibraryPersistentBean/remote - EJB3.x Default Remote Business Interface
   LibraryPersistentBean/remote-com.tutorialspoint.stateless.LibraryPersistentBeanRemote - EJB3.x Remote Business Interface
...

EJBTester (EJB Client)

jndi.properties

java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
java.naming.provider.url=localhost
  1. 这些属性被用于初始化java命名服务的InitialContext对象。

  2. InitialContext对象将被用于查找无状态会话bean。

EJBTester.java

package com.tutorialspoint.test;

import com.tutorialspoint.stateless.LibraryPersistentBeanRemote;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.List;
import java.util.Properties;
import javax.naming.InitialContext;
import javax.naming.NamingException;

public class EJBTester {

   BufferedReader brConsoleReader = null;
   Properties props;
   InitialContext ctx;
   {
      props = new Properties();
      try {
         props.load(new FileInputStream("jndi.properties"));
      } catch (IOException ex) {
         ex.printStackTrace();
      }
      try {
         ctx = new InitialContext(props);
      } catch (NamingException ex) {
         ex.printStackTrace();
      }
      brConsoleReader =
      new BufferedReader(new InputStreamReader(System.in));
   }

   public static void main(String[] args) {

      EJBTester ejbTester = new EJBTester();

      ejbTester.testEntityEjb();
   }

   private void showGUI() {
      System.out.println("**********************");
      System.out.println("Welcome to Book Store");
      System.out.println("**********************");
      System.out.print("Options \n1. Add Book\n2. Exit \nEnter Choice: ");
   }

   private void testEntityEjb() {

      try {
         int choice = 1;

         LibraryPersistentBeanRemote libraryBean =
         LibraryPersistentBeanRemote)
         ctx.lookup("LibraryPersistentBean/remote");

         while (choice != 2) {
            String bookName;
            showGUI();
            String strChoice = brConsoleReader.readLine();
            choice = Integer.parseInt(strChoice);
            if (choice == 1) {
               System.out.print("Enter book name: ");
               bookName = brConsoleReader.readLine();
               Book book = new Book();
               book.setName(bookName);
               libraryBean.addBook(book);
            } else if (choice == 2) {
               break;
            }
         }

         List<Book> booksList = libraryBean.getBooks();

         System.out.println("Book(s) entered so far: " + booksList.size());
         int i = 0;
         for (Book book:booksList) {
            System.out.println((i+1)+". " + book.getName());
            i++;
         }
      } catch (Exception e) {
         System.out.println(e.getMessage());
         e.printStackTrace();
      }finally {
         try {
            if(brConsoleReader !=null) {
               brConsoleReader.close();
            }
         } catch (IOException ex) {
            System.out.println(ex.getMessage());
         }
      }
   }
}

EJBTester执行以下任务-

  1. 从jndi.properties加载属性并初始化InitialContext对象。

  2. 在 testStatefulEjb() 方法中,使用名称 - “LibraryStatelessSessionBean/remote” 执行 jndi 查找,以获取远程业务对象(有状态 ejb)。

  3. 然后,向用户显示图书馆商店的用户界面,并要求他/她输入选择。

  4. 如果用户输入 1,系统会询问书籍名称并使用无状态会话 bean addBook() 方法保存书籍。会话 Bean 正在通过 EntityManager 调用将该书籍保存到数据库中。

  5. 如果用户输入2,系统将使用无状态会话bean的getBooks()方法检索图书并退出。

  6. 然后再次使用名称 - “LibraryStatelessSessionBean/remote” 执行另一个 jndi 查找,以获取远程业务对象(有状态 EJB),并列出图书。

Run Client to Access EJB

在项目浏览器中找到EJBTester.java。右键单击EJBTester类并选择 run file

在Netbeans控制台中验证以下输出。

run:
**********************
Welcome to Book Store
**********************
Options
1. Add Book
2. Exit
Enter Choice: 1
Enter book name: Learn Testing
**********************
Welcome to Book Store
**********************
Options
1. Add Book
2. Exit
Enter Choice: 2
Book(s) entered so far: 1
1. learn Testing
BUILD SUCCESSFUL (total time: 15 seconds)