Ejb 简明教程

EJB - Interceptors

EJB 3.0通过使用带有@AroundInvoke注解的方法截取业务方法调用来提供规范。在业务方法调用前,ejbContainer将调用一个拦截器方法,然后进行拦截。以下是拦截器方法的示例签名:

@AroundInvoke
public Object methodInterceptor(InvocationContext ctx) throws Exception {
   System.out.println("*** Intercepting call to LibraryBean method: "
   + ctx.getMethod().getName());
   return ctx.proceed();
}

拦截器方法可以应用或绑定在三个级别。

  1. Default -部署中每个bean将调用默认的拦截器。默认的拦截器只能通过xml(ejb-jar.xml)来应用。

  2. Class -类级别的拦截器将在bean的每个方法中调用。类级别的拦截器可以通过注解或通过xml(ejb-jar.xml)来应用。

  3. Method -方法级别的拦截器将为bean的特定方法调用。方法级别的拦截器可以通过注解或通过xml(ejb-jar.xml)来应用。

我们在此讨论类级别的拦截器。

Interceptor Class

package com.tutorialspoint.interceptor;

import javax.interceptor.AroundInvoke;
import javax.interceptor.InvocationContext;

public class BusinessInterceptor {
   @AroundInvoke
   public Object methodInterceptor(InvocationContext ctx) throws Exception {
      System.out.println("*** Intercepting call to LibraryBean method: "
      + ctx.getMethod().getName());
      return ctx.proceed();
   }
}

Remote Interface

import javax.ejb.Remote;

@Remote
public interface LibraryBeanRemote {
   //add business method declarations
}

Intercepted Stateless EJB

@Interceptors ({BusinessInterceptor.class})
@Stateless
public class LibraryBean implements LibraryBeanRemote {
   //implement business method
}

Example Application

让我们创建一个测试EJB应用程序来测试截取的无状态EJB。

Step

Description

1

在程序包com.tutorialspoint.interceptor中使用名称EjbComponent创建一个项目,正如在EJB-创建应用程序章节中所解释的那样。您还可以使用EJB-创建应用程序章节中创建的项目,以了解拦截的EJB概念。

2

按照 EJB - 创建应用程序章节中所述,在 com.tutorialspoint.interceptor 包下创建 LibraryBean.java 和 LibraryBeanRemote。保持其他文件不变。

3

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

4

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

5

现在,按照 EJB - 创建应用程序章节下主题 Create Client to access EJB 中所述,创建 ejb 客户端,这是一个基于控制台的应用程序。

EJBComponent (EJB Module)

LibraryBeanRemote.java

package com.tutorialspoint.interceptor;

import java.util.List;
import javax.ejb.Remote;

@Remote
public interface LibraryBeanRemote {
   void addBook(String bookName);
   List getBooks();
}

LibraryBean.java

package com.tutorialspoint.interceptor;

import java.util.ArrayList;
import java.util.List;

import javax.ejb.Stateless;
import javax.interceptor.Interceptors;

@Interceptors ({BusinessInterceptor.class})
@Stateless
public class LibraryBean implements LibraryBeanRemote {

   List<String> bookShelf;

   public LibraryBean() {
      bookShelf = new ArrayList<String>();
   }

   public void addBook(String bookName) {
      bookShelf.add(bookName);
   }

   public List<String> getBooks() {
      return bookShelf;
   }
}
  1. 在 JBOSS 上部署 EjbComponent 项目后,请注意 jboss 日志。

  2. JBoss 会自动为我们的会话 Bean 创建 JNDI 条目 − LibraryBean/remote

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

JBoss Application Server Log Output

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

   LibraryBean/remote - EJB3.x Default Remote Business Interface
   LibraryBean/remote-com.tutorialspoint.interceptor.LibraryBeanRemote - 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.stateful.LibraryBeanRemote;

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.testInterceptedEjb();
   }

   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 testInterceptedEjb() {

      try {
         int choice = 1;

         LibraryBeanRemote libraryBean =
         LibraryBeanRemote)ctx.lookup("LibraryBean/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. 在 testInterceptedEjb() 方法中,使用名称 "LibraryBean/remote" 完成 jndi 查找,以获取远程业务对象(无状态 EJB)。

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

  4. 如果用户输入 1,系统会询问书名,并使用无状态会话 Bean addBook() 方法保存该书。会话 Bean 会将其存储在其实例变量中。

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

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 Java
**********************
Welcome to Book Store
**********************
Options
1. Add Book
2. Exit
Enter Choice: 2
Book(s) entered so far: 1
1. Learn Java
BUILD SUCCESSFUL (total time: 13 seconds)

JBoss Application Server Log Output

在 JBoss 应用程序服务器日志输出中确认以下输出。

....
09:55:40,741 INFO  [STDOUT] *** Intercepting call to LibraryBean method: addBook
09:55:43,661 INFO  [STDOUT] *** Intercepting call to LibraryBean method: getBooks