EJB查询语言
EJB 3.0,EJB查询语言是相当方便的自定义查询编写,不必担心底层数据库的详细信息。这是很相似的HQL,Hibernate查询语言,EJBQL经常引用。
为了演示EJB中的EJBQL,我们将执行以下任务。
第1步:在数据库中创建表。
步骤2.创建一个有business me的无状态EJB。
步骤3.更新无状态EJB。添加方法,添加记录以及通过实体管理器从数据库获取记录。
步骤4.基于控制台的应用程序客户端将访问无状态 ejb 存在数据库中的数据。
创建表
在默认数据库postgres中创建table books
CREATE TABLE books ( id integer PRIMARY KEY, name varchar(50) );
创建模型类
public class Book implements Serializable{ private int id; private String name; public Book(){ } public int getId() { return id; } ... }
创建无状态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,在下一节中我们将会创建。
示例应用程序
让我们创建一个测试EJB应用程序来测试EJB的数据库访问机制。
步骤 | 描述 |
---|---|
1 | 用包com.tutorialspoint.entity下一个名字EjbComponent在EJB作为解释的创建项目-创建应用程序一章。您也可以使用EJB创建的项目-创建应用程序章这样本章了解EJB数据访问的概念。 |
2 | 包下com.tutorialspoint.entity创建Book.java,并修改它,如下图所示。 |
3 | 创建LibraryPersistentBean.java和LibraryPersistentBeanRemote作为EJB解释-创建应用程序一章并修改它们,如下图所示。 |
4 | 清理并生成应用程序,确保业务逻辑正在按要求。 |
5 | 最后,部署JBoss应用服务器上的jar文件的形式应用。如果尚未启动JBoss应用服务器将自动被启动。 |
6 | 现在创建EJB客户端,以同样的方式一个基于控制台的应用程序在EJB解释-创建应用程序一章的主题创建客户机访问EJB。修改它,如下图所示。 |
EJBComponent(EJB模块)
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(); } }
一旦你部署EjbComponent项目到JBoss上,注意jboss的日志。
JBoss 已自动创建我们的会话 bean-LibraryPersistentBean/remote JNDI 条目。
我们将使用这个查询字符串获取远程业务类型的对象
- com.tutorialspoint.stateless.LibraryPersistentBeanRemote
JBoss应用服务器日志输出
... 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客户端)
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
这些属性用于初始化Java命名服务的InitialContext对象
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 1. Add Book 2. Exit Enter 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执行以下任务。
从 jndi.properties 加载属性并初始化输出对象。
在testStatefulEjb()方法中,jndi查找名称——“LibraryStatelessSessionBean /remote”来获取远程业务对象(有状态的ejb)。
然后用户显示库存储用户界面和他(她)被要求输入选择。
如果用户输入 1,系统将要求书名称并保存使用无状态会话 bean addBook() 方法的书。会话 Bean 坚持通过实体管理器调用数据库中的书。
如果用户输入2,系统retrives使用无状态会话bean getBooks()方法,并退出书籍。
完成另一个jndi名称查找——“LibraryStatelessSessionBean /remote”来获取远程业务对象(有状态的ejb)和书的清单。
运行客户端访问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)
更多建议: