Hide
If one wants to let Spring handle transaction management it is necessary to disable ejb transaction management. Problem surfaced when an exception was thrown during a transactional service method. Spring marked the transaction for rollback, the ejb session bean attempted to mark the transaction for rollback, found it was already marked and threw an exception that masked the original exception.
Show
If one wants to let Spring handle transaction management it is necessary to disable ejb transaction management. Problem surfaced when an exception was thrown during a transactional service method. Spring marked the transaction for rollback, the ejb session bean attempted to mark the transaction for rollback, found it was already marked and threw an exception that masked the original exception.