1 Reply Latest reply on Mar 23, 2007 6:28 AM by pmuir

    TimerService in Seam app

    statelessbean

      Hi,
      I have Seam app, but i need to create global = application context bean that excecute each 1minute some method. Method take some records from db and do somethink...

      Is ejb3.0 timmer service good for that?
      I found some tutorial how to use timmer service, and i see there:

      @Resource
      private SessionContext ctx;
      

      here is session Context , so isn't that mean if 100users will be use my app there will be 100instances of timmers, and 100times my method invoked?

      Can anyone help / explain how to create global quartz that start each minute and invoke some method from my application scope bean?