IS it possible to return list of tasks (Runnable?) to spring, so spring execute them in serial order regardless exceptions thrown by each item?
I want spring to call 10 tasks in order: 1, 2, 3 and so on, and simply log exception if it occures
Looks like @Async may help, but how can I configure it from XML?