IMHO, you might want to look at the Spring framework as it provides a nice
API on top of the asynchronous JEE features you need.
Best,
James.
On Sun, Feb 22, 2009 at 10:26 PM, Kaspar Fischer wrote:
> My Wicket app needs to run tasks in the background and I am looking for a
> Java framework to "p
Kaspar Fischer schrieb:
the task will be run, even if the server is shut down in between and the
task needs to be restarted. Also, tasks that support cancellation (à la
java.util.concurrent.ExecutorService) should be cancelled when the
system stops.
sounds like JMS. I´d recommend ActiveMQ.
That seems to be it!
Thanks a lot, Pierre.
Kaspar
On 23.02.2009, at 00:39, Pierre Goupil wrote:
Maybe Quartz is what you want :
http://www.opensymphony.com/quartz/
Regards,
Pierre
On Sun, Feb 22, 2009 at 11:26 PM, Kaspar Fischer
wrote:
My Wicket app needs to run tasks in the backgro
Maybe Quartz is what you want :
http://www.opensymphony.com/quartz/
Regards,
Pierre
On Sun, Feb 22, 2009 at 11:26 PM, Kaspar Fischer wrote:
> My Wicket app needs to run tasks in the background and I am looking for a
> Java framework to "persist" tasks in the sense that I can submit a task an
My Wicket app needs to run tasks in the background and I am looking
for a Java framework to "persist" tasks in the sense that I can submit
a task and the framework would ensure that once submitted
(transactions?), the task will be run, even if the server is shut down
in between and the task