EJB - 定时器服务



定时器服务是一种机制,通过它可以构建计划应用程序。例如,每月1日生成工资单。EJB 3.0 规范指定了@Timeout 注解,这有助于在无状态或消息驱动 Bean 中对 EJB 服务进行编程。EJB 容器会调用用@Timeout 注解的方法。

EJB 定时器服务是 EJB 容器提供的一项服务,它有助于创建定时器并在定时器到期时安排回调。

创建定时器的步骤

使用@Resource 注解将 SessionContext 注入 Bean 中 -

@Stateless
public class TimerSessionBean {

   @Resource
   private SessionContext context;
   ...
}

使用 SessionContext 对象获取 TimerService 并创建定时器。以毫秒为单位传递时间和消息。

public void createTimer(long duration) {
   context.getTimerService().createTimer(duration, "Hello World!");
}

使用定时器的步骤

对方法使用@Timeout 注解。返回类型应为 void,并传递类型为 Timer 的参数。我们在第一次执行后取消定时器,否则它将在固定间隔后继续运行。

@Timeout
public void timeOutHandler(Timer timer) {
   System.out.println("timeoutHandler : " + timer.getInfo());        
   timer.cancel();
}

示例应用程序

让我们创建一个测试 EJB 应用程序来测试 EJB 中的定时器服务。

步骤 描述
1

在包com.tutorialspoint.timer下创建一个名为EjbComponent的项目,如EJB - 创建应用程序章节中所述。

2

创建TimerSessionBean.javaTimerSessionBeanRemote,如EJB - 创建应用程序章节中所述。保持其余文件不变。

3

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

4

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

5

现在创建 EJB 客户端,一个与EJB - 创建应用程序章节中主题创建访问 EJB 的客户端下所述相同方式的基于控制台的应用程序。

EjbComponent(EJB 模块)

TimerSessionBean.java

package com.tutorialspoint.timer;

import javax.annotation.Resource;
import javax.ejb.SessionContext;
import javax.ejb.Timer;
import javax.ejb.Stateless;
import javax.ejb.Timeout;

@Stateless
public class TimerSessionBean implements TimerSessionBeanRemote {

   @Resource
   private SessionContext context;

   public void createTimer(long duration) {
      context.getTimerService().createTimer(duration, "Hello World!");
   }

   @Timeout
   public void timeOutHandler(Timer timer) {
      System.out.println("timeoutHandler : " + timer.getInfo());        
      timer.cancel();
   }
}

TimerSessionBeanRemote.java

package com.tutorialspoint.timer;

import javax.ejb.Remote;

@Remote
public interface TimerSessionBeanRemote {
   public void createTimer(long milliseconds);
}
  • 一旦您将 EjbComponent 项目部署到 JBOSS 上,请注意 jboss 日志。

  • JBoss 已自动为我们的会话 Bean 创建了一个 JNDI 条目 - TimerSessionBean/remote

  • 我们将使用此查找字符串来获取类型为com.tutorialspoint.timer.TimerSessionBeanRemote的远程业务对象

JBoss 应用程序服务器日志输出

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

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.stateful.TimerSessionBeanRemote;
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.testTimerService();
   }
   
   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 testTimerService() {
      try {
         TimerSessionBeanRemote timerServiceBean = (TimerSessionBeanRemote)ctx.lookup("TimerSessionBean/remote");

         System.out.println("["+(new Date()).toString()+ "]" + "timer created.");
         timerServiceBean.createTimer(2000);            

      } catch (NamingException ex) {
         ex.printStackTrace();
      }
   }
}

EJBTester 正在执行以下任务。

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

  • 在 testTimerService() 方法中,使用名称“TimerSessionBean/remote”执行 jndi 查找以获取远程业务对象(定时器无状态 EJB)。

  • 然后调用 createTimer,将 2000 毫秒作为计划时间传递。

  • EJB 容器在 2 秒后调用 timeoutHandler 方法。

运行客户端以访问 EJB

在项目资源管理器中找到 EJBTester.java。右键单击 EJBTester 类并选择运行文件

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

run:
[Wed Jun 19 11:35:47 IST 2013]timer created.
BUILD SUCCESSFUL (total time: 0 seconds)

JBoss 应用程序服务器日志输出

您可以在 JBoss 日志中找到以下回调条目

...
11:35:49,555 INFO  [STDOUT] timeoutHandler : Hello World!
...
广告