Defines JEE 5 the handling of commit error using bean managed transactions?
- by marabol
I'm using glassfish 2.1 and 2.1.1.
If I've a bean method annotated by @TransactionAttribute(value = TransactionAttributeType.REQUIRES_NEW). After doing some JPA stuff the commit fails in the afterCompletion-Phase of JTS.
GlassFish logs this failure only. And the caller of this bean method has no chance to know something goes wrong.
So I wonder,…