Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hello everybody i'm looking for some help with the next problem: i have a jpa/stateless ejb's proyect that works perfectly, it just does simple queries and persist operations, but now i need to execute a set of persist operations, if any of them fails, i must perform a rollback, so i found JTA can do the job but using this piece of source code:

@Stateless
public class ProjectBean implements IProject {

@Resource
javax.transaction.UserTransaction utx;
@PersistenceContext(unitName = "JPADB")
private EntityManager entityManager;
  ...
 //more code

//this is part of a method
try{
utx.begin();
entityManager.joinTransaction();
    for(Project p:projectResultList){
                entityManager.persist(p);
            }
            utx.commit();
        }catch(Exception e){
            e.printStackTrace();
            if(utx != null)
                try {
                    utx.rollback();
                } catch (IllegalStateException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                } catch (SecurityException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                } catch (SystemException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                }
                //tx.rollback();
        }

simply doesn't work, and this is how the persistence.xml looks like:

<persistence-unit name="JPADB">
<jta-data-source>java:jboss/datasources/OracleBic</jta-data-source>
    <properties>
        <property name="hibernate.show_sql" value ="true" />
        <property name="hibernate.dialect"  value="org.hibernate.dialect.Oracle10gDialect" />
    </properties>
</persistence-unit>

really hope anyone can give me a tip or advice, i'm a newbie with jpa/jta concepts and i tried lots of codes i found in the web but i always obtain different errors (Wrong tx on thread: expected TransactionImple usertransaction begin,Cannot use an EntityTransaction while using JTA). thanks in advance.

share|improve this question
2  
Why are you managing your transaction in the bean code? You can just leave the application server taking care about it. You should just inject the context in the ejb, like this @Resource private SessionContext context;, and call context.setRollbackOnly(); inside the exception catch block. – remigio Nov 14 '12 at 7:29

2 Answers

remigio's comment is correct, @Stateless session beans control transaction boundaries with javax.ejb.@TransactionAttribute, if the annotation is absent all public methods are TransactionAttribute.REQUIRED. For more information, see http://download.oracle.com/otndocs/jcp/ejb-3_0-fr-eval-oth-JSpec/ (ejb-3_0-fr-spec-ejbcore.pdf).

UserTransaction is never used in a @Stateless session bean, but rather is used by clients that are calling the bean to demarcate a wider transaction window than that of just the method call itself.

share|improve this answer
you are right UserTransaction in never used in Stateless session beans. Yet as for clients which need a wider transaction windows I would use a stateful session bean and inject @PersistenceContext(PersistenceContextType.Extended). You want to encapsulate the transaction demarcation policy within the session bean and you don't want to expose it to be managed by clients. – Sam Nov 21 '12 at 20:08

Did you instruct your AS that you are going to handle transactions manually with @TransactionManagement(TransactionManagementType.BEAN) on method level? I do not see the annotation on class level. Probably you have it on method level, but your code snipped is insufficient to make any guess. Otherwise all transactions are Container managed and your code is not going to work. So you have to either put @TransactionManagement(TransactionManagementType.BEAN) on either a method or class level depends on requirements or you may want to allow your container to manage transactions for you and than you have to make changes that @remigio suggested to you. It seems that the second approach is better in your case

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.