we have a application developed using EJB 2.0. we used stateless session beans with ejb timer service. we planned to remove completely ejb but we need the timer service. i come to know JMS provide the timer service, but looking for robust technology.
            Asked
            
        
        
            Active
            
        
            Viewed 1,457 times
        
    3 Answers
0
            
            
        I thinks most popular timer framework is Quartz,and it's very easy to integrate with Spring Framework
        Harry.Chen
        
- 1,582
 - 11
 - 12
 
0
            
            
        You could use Spring/Quartz, but to keep the things as portable as posible let me suggest you jump in EJB 3.2 (Java EE7). The timer service is simpler and the entire EJB was improved (no more XML). You are familiar with EJB, currently is a good alternative taking into the count your familiarity with the frameworks.
        Sergio
        
- 3,317
 - 5
 - 32
 - 51