EJB计时器服务
定时服务使用的机制,调度的应用程序可以建立。例如,工资单产生在每月1日。 EJB 3.0规范已经指定了@Timeout annotation,这有助于在一个无状态或消息驱动bean编程EJB服务指定。 EJB容器调用它是由@Timeout annotation的方法。
EJB计时器服务信息通过EJB容器,这有助于创建计时器和当定时器期满调度回调提供的服务。
步骤来创建计时器
在bean中使用@Resource annotation注入SessionContext
@Stateless public class TimerSessionBean { @Resource private SessionContext context; ... }
使用SessionContext被对象获取TimerService并创建计时器。通过以毫秒为单位和消息的时间。
public void createTimer(long duration) { context.getTimerService().createTimer(duration, "Hello World!"); }
使用定时器步骤
使用@Timeout annotation的方法。返回类型应该是无效的,并通过类型定时器的一个参数。我们取消计时器第一次执行后否则将修复后的时间间隔继续运行。
@Timeout public void timeOutHandler(Timer timer){ System.out.println("timeoutHandler : " + timer.getInfo()); timer.cancel(); }
示例应用程序
让我们创建一个测试EJB应用程序来测试定时服务的EJB。
步骤 | 描述 |
---|---|
1 | EjbComponentunder用包com.tutorialspoint.timer下一个名字EjbComponent在EJB作为解释的创建项目-创建应用程序一章。 |
2 | 创建TimerSessionBean.java和TimerSessionBeanRemote作为EJB解释-创建应用程序一章。保持不变的文件其余部分。 |
3 | 清理并生成应用程序,确保业务逻辑正在按要求。 |
4 | 最后,部署JBoss应用服务器上的jar文件的形式应用。如果尚未启动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 1. Add Book 2. Exit Enter 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()方法,JNDI查找与名行 - “TimerSessionBean /远程”,以获得远程业务对象(定时器无状态EJB)。
然后createTimer调用传递2000毫秒的预定时间。
EJB容器调用在2秒后的timeoutHandler方法。
运行客户端访问EJB
在项目资源管理器中找到EJBTester.java。右键单击EJBTester类并选择运行文件(run file) 。
验证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! ...