tags:

views:

154

answers:

1

I am using Spring on Tomcat. I want to use JMS Timer. Is there any example?

A: 

Tomcat doesn't support JMS. You need to use something like ActiveMQ.

For scheduling (timers) you can use Quartz.

Spring in Action has examples both for JMS and Quartz.

kgiannakakis
Quartz is good for me. Yes, Tomcat does not support JMS I know. But with the power of Spring Framework You can easily implement JMS on Tomcat and I have done it. It works perfectly.
Firstthumb