Habe ich eine stateless-bean mit bean-verwalteten Transaktionen, und eine Methode, wie diese: @Stateless @TransactionManagement(TransactionManagementType.BEAN) public class ... { @Resource private UserTransaction ut; @EJB private OtherStatelessBeanLocal other; public void invokeSomeMethods() ut.begin(); ... //invoke other bean's methods here. other.method();