定時(shí)服務(wù)使用的機(jī)制,調(diào)度的應(yīng)用程序可以建立。例如,工資單產(chǎn)生在每月1日。 EJB 3.0規(guī)范已經(jīng)指定了@Timeout annotation,這有助于在一個(gè)無狀態(tài)或消息驅(qū)動(dòng)bean編程EJB服務(wù)指定。 EJB容器調(diào)用它是由@Timeout annotation的方法。
EJB計(jì)時(shí)器服務(wù)信息通過EJB容器,這有助于創(chuàng)建計(jì)時(shí)器和當(dāng)定時(shí)器期滿調(diào)度回調(diào)提供的服務(wù)。
在bean中使用@Resource annotation注入SessionContext
@Stateless public class TimerSessionBean { @Resource private SessionContext context; ... }
使用SessionContext被對(duì)象獲取TimerService并創(chuàng)建計(jì)時(shí)器。通過以毫秒為單位和消息的時(shí)間。
public void createTimer(long duration) { context.getTimerService().createTimer(duration, "Hello World!"); }
使用@Timeout annotation的方法。返回類型應(yīng)該是無效的,并通過類型定時(shí)器的一個(gè)參數(shù)。我們?nèi)∠?jì)時(shí)器第一次執(zhí)行后否則將修復(fù)后的時(shí)間間隔繼續(xù)運(yùn)行。
@Timeout public void timeOutHandler(Timer timer){ System.out.println("timeoutHandler : " + timer.getInfo()); timer.cancel(); }
讓我們創(chuàng)建一個(gè)測(cè)試EJB應(yīng)用程序來測(cè)試定時(shí)服務(wù)的EJB。
步驟 | 描述 |
---|---|
1 | EjbComponentunder用包com.tutorialspoint.timer下一個(gè)名字EjbComponent在EJB作為解釋的創(chuàng)建項(xiàng)目-創(chuàng)建應(yīng)用程序一章。 |
2 | 創(chuàng)建TimerSessionBean.java和TimerSessionBeanRemote作為EJB解釋-創(chuàng)建應(yīng)用程序一章。保持不變的文件其余部分。 |
3 | 清理并生成應(yīng)用程序,確保業(yè)務(wù)邏輯正在按要求。 |
4 | 最后,部署JBoss應(yīng)用服務(wù)器上的jar文件的形式應(yīng)用。如果尚未啟動(dòng)JBoss應(yīng)用服務(wù)器將自動(dòng)被啟動(dòng)。 |
5 | 現(xiàn)在創(chuàng)建EJB客戶端,以同樣的方式一個(gè)基于控制臺(tái)的應(yīng)用程序在EJB解釋-創(chuàng)建應(yīng)用程序一章的主題創(chuàng)建客戶機(jī)訪問EJB。 |
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(); } }
package com.tutorialspoint.timer; import javax.ejb.Remote; @Remote public interface TimerSessionBeanRemote { public void createTimer(long milliseconds); }
一旦你部署EjbComponent項(xiàng)目到JBoss上,注意jboss的日志。
JBoss已經(jīng)具備自動(dòng)創(chuàng)建我們的會(huì)話bean JNDI入口- TimerSessionBean /remote 。
我們將使用此查找字符串來獲得類型的遠(yuǎn)程業(yè)務(wù)對(duì)象- com.tutorialspoint.timer.TimerSessionBeanRemote
... 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 ...
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命名服務(wù)的InitialContext對(duì)象
InitialContext對(duì)象將被用于查找無狀態(tài)會(huì)話bean
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執(zhí)行以下任務(wù)。
從jndi.properties負(fù)荷特性和初始化InitialContext對(duì)象。
在testTimerService()方法,JNDI查找與名行 - “TimerSessionBean /遠(yuǎn)程”,以獲得遠(yuǎn)程業(yè)務(wù)對(duì)象(定時(shí)器無狀態(tài)EJB)。
然后createTimer調(diào)用傳遞2000毫秒的預(yù)定時(shí)間。
EJB容器調(diào)用在2秒后的timeoutHandler方法。
在項(xiàng)目資源管理器中找到EJBTester.java。右鍵單擊EJBTester類并選擇運(yùn)行文件(run file) 。
驗(yàn)證Netbeans的控制臺(tái)下面的輸出。
run: [Wed Jun 19 11:35:47 IST 2013]timer created. BUILD SUCCESSFUL (total time: 0 seconds)
你可以在 JBoss 日志中找到下列回調(diào)條目
... 11:35:49,555 INFO [STDOUT] timeoutHandler : Hello World! ...
更多建議: