I have some non-critical clean up operation that I want to perform inside my web-app. I'm hoping to hand it off to an asynchronous process, but I don't have any JMS provider available to me ( and I'm not likely to get one approved in the timescales ).
I like the idea of the Spring MDP, but all the examples that I have seen explicitly tie it in to a JMS implementation of some sort. Is it possible to tie it to a Queue implementation based on the java.util.Queue interface? I'm thinking that I could just push messages on to a queue and use a Spring MDP to process them.
Am I barking up the wrong tree?