Default EJB transaction mode for asynchronous methods?
Similar to an MDB the transaction is started by the container just before your @Asynchronous, @Schedule or @Timeout method (and applicable interceptors) is actually invoked and committed just after the method (and interceptors) completes. As per usual, the transaction propagates to all beans called in said method and all beans those beans call, recursively. Of … Read more