I'm looking for advice on the subject. The only hints on the web I've found pertain to message-driven beans and are:
- Annotating the MDB with
NOT_SUPPORTEDtransaction type, thus making it non-transactional, - Running the lengthy logic asynchronously, in a new thread.
The first method certainly doesn't work with DMLC in Websphere 7.0 (tested). There IS a transaction despite this annotation and it times out after the process is complete, causing the message to be redelivered. I don't like the other solution, as it frees the MDB for receiving a new message, while it should not, because the server is busy.
My logic makes a short check and begins sending thousands of JMS messages; I've found a workaround by wrapping the initial check into a JTA UserTransaction, and the method sending a JMS message is annotated with @REQUIRES_NEW, so the whole logic is isolated from the transaction started by DMLC. When the onMessage() method completes, only the enclosing transaction is rolled back, but it does nothing — still, there is an exception and I have to discard the redelivered message.
So, how to write a healthy onMessage() method for DMLC that has to execute a long-running code?