I\'m using CMT in EJB3 state-less session beans. Also I\'ve created my own Exception having the annotation \"@ApplicationException (rollback=true)\".
Do I have
First of all, there is no rollback of an exception, it's a rollback of a transaction.
@ApplicationException(rollback=true)
, you don't have to rollback the transaction manually. Context.setRollbackOnly()
forces the container to rollback the transaction, also if there is no exception.@ApplicationException(rollback=true)
. If the exception is a RuntimeException
and the exception isn't caught, it forces the container to rollback the transaction. But watch out, the container will in this case discard the EJB instance.RuntimeException
, the transaction will be rolled back automatically. If you catch an checked exception inside the code, you have to use setRollbackOnly
to rollback the transaction.For further information, check out the free book Mastering EJB. It describes the rollback scenarios very well and is free for download.