-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: how to commit a transaction in the middle of EJB3 method
PostPosted: Thu May 11, 2006 11:55 am 
Newbie

Joined: Thu Mar 09, 2006 5:48 am
Posts: 10
Hibernate version:
hibernate 3.1 + ejb3.

Hi.
I have a method in ejb3 stateless bean, which I'm tring to split there the initial transaction to two transactions.
meaning:

Code:

public @Stateless class XXXBean {

@PersistenceContext(unitName="ImagineDB")
private EntityManager manager;

public void someMethod() {
   Dog dog = new Dog(); //dog is an entity bean;
   manager.persist(dog);
   manager.flush();
   //here I want new transaction
   manager.getTransaction().commit(); //this commands fails
   Cat cat = new Cat();
   manager.persist(cat);

}

}



Thanks in advance, amit


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.