WEB开发网
开发学院WEB开发Jsp 在Weblogic中使用定时器(commonj Timer for weblo... 阅读

在Weblogic中使用定时器(commonj Timer for weblogic server)

 2008-01-05 18:44:02 来源:WEB开发网   
核心提示:1.简介由于J2EE规范的限制,在Servlet和EJB中执行用户自定义的多线程并发与定时器服务一直以来是困扰J2EE开发人员的一个大问题,在Weblogic中使用定时器(commonj Timer for weblogic server),现在CommonJ项目中的Work Manager和Timer规范将是解决这些
1.简介   由于J2EE规范的限制,在Servlet和EJB中执行用户自定义的多线程并发与定时器服务一直以来是困扰J2EE开发人员的一个大问题。现在CommonJ项目中的Work Manager和Timer规范将是解决这些问题的一个优秀方法。      CommonJ 定时器(Timer)规范提供了一个在Servlet和EJB中设置定时器的简单方法,同时答应在Servlet和EJB中响应定时器的提醒。该规范提供了一个在不能或者不方便使用java.util.Timer环境中使用定时器功能的替代方法。

现在在WebLogic Server 9.0中已经提供了对Work Manager和Timer规范的支持,在WebLogic Server 7和8中需要使用该项功能请参考这里,xcommonj-work。

关于Work Manager和Timer规范的更多信息请访问这里:Timer and Work Manager for application Servers。

  在J2EE中使用 Work Manager 规范执行并行任务,请访问这里:http://dev2dev.bea.com.cn/techdoc/200508631.Html

  Commonj定时器的参考请见这里:http://dev2dev.bea.com.cn/techdoc/20051221711.html 2.定时器的使用办法: (1)在web.xml或者ejb-jar.xml中增加定时器的描述:  <resource-ref>
   <res-ref-name>timer/MyTimer</res-ref-name>
   <res-type>commonj.timers.TimerManager</res-type>
   <res-auth>Container</res-auth>
   <res-sharing-scope>Unshareable</res-sharing-scope>
  </resource-ref> (2)定义定时器到时间的回调类: import commonj.timers.*; public class TestListener
   implements TimerListener
{
   public TestListener()
   {
   }       public void timerEXPired(Timer timer)
   {
     System.out.PRintln("TimerExpired.");
   }
} (3)在其它任何地方启动定时器,并设置定时器的任务即可实现定时功能了。        InitialContext ctx = new InitialContext();
       TimerManager mgr = (TimerManager)ctx.lookup("java:comp/env/timer/MyTimer");
       TimerListener listener = new TestListener();
       mgr.schedule(listener,4000);//定时器执行一次
       mgr.scheduleAtFixedRate(listener,5000,2000);//定时器周期执行        //按照日历来执行定时器       Calendar cal = Calendar.getInstance();
       cal.set(Calendar.HOUR, 12);
       mgr.schedule(listener, cal.getTime());

Tags:Weblogic 使用 定时器

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接