]
jaikiran pai updated EJBTHREE-2134:
-----------------------------------
Fix Version/s: EJB 3.1
Affects Version/s: depchain-1.0.0-alpha-4
(was: EJB 3.1)
Application Exception designations are not being respected in either
ejb-jar.xml or via @ApplicationException annotations
-------------------------------------------------------------------------------------------------------------------------
Key: EJBTHREE-2134
URL:
https://jira.jboss.org/browse/EJBTHREE-2134
Project: EJB 3.0
Issue Type: Bug
Affects Versions: depchain-1.0.0-alpha-4
Environment: JBoss AS 6 M4
Reporter: Lincoln Baxter III
Assignee: jaikiran pai
Fix For: EJB 3.1
"14.2.1: By default, designating an unchecked exception as an application exception
also applies to subclasses of that exception."
Currently, whether annotating an exception class with @ApplicationException, or using
ejb-jar.xml, the subclasses of those designated exceptions are not being applied.
This means that each individual exception must be annotated or defined in ejb-jar.xml
For example, NoSuchObjectException extends DataException, but without the following
configuration, NoSuchObjectException will be wrapped in EJBException and the transaction
will be rolled back.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar
xmlns="http://java.sun.com/xml/ns/javaee" version="3.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd">
<assembly-descriptor>
<application-exception>
<exception-class>javax.persistence.PersistenceException</exception-class>
<rollback>true</rollback>
</application-exception>
<application-exception>
<exception-class>com.ocpsoft.exceptions.DataException</exception-class>
<rollback>false</rollback>
</application-exception>
<!-- This is required or we get EJBException wrapping and transaction
rollbacks... wrong! -->
<application-exception>
<exception-class>com.ocpsoft.exceptions.NoSuchObjectException</exception-class>
<rollback>false</rollback>
</application-exception>
</assembly-descriptor>
</ejb-jar>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: