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.

有帮助吗?

解决方案

If you're looking for an alternative to EJBs I'll probably recommend the Spring Framework

其他提示

I thinks most popular timer framework is Quartz,and it's very easy to integrate with Spring Framework

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top