-->
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.  [ 2 posts ] 
Author Message
 Post subject: Book Exmple 11.1 question
PostPosted: Fri Feb 16, 2007 12:42 pm 
Regular
Regular

Joined: Thu Sep 23, 2004 11:53 am
Posts: 83
Hibernate version:
3
Mapping documents:
NA
Code between sessionFactory.openSession() and session.close():
NA
Full stack trace of any exception that occurs:
No exception
Name and version of the database you are using:
NA
The generated SQL (show_sql=true):
NA
Debug level Hibernate log excerpt:
NA

My question is about the code below, specifically the bolded line. If this is coming from the UI (Controller) how did the UI avoid LazyInitializationException (LE) on the associations between requests (meaning if the user updated the cateogry list)?

Is it the norm to have the form use th HB bean and if so how do you avoid LE?

example code:

Code:
public class ManageAuction {
     ItemDAO itemDAO = new ItemDAO();
     PaymentDAO paymentDAO = new PaymentDAO();
     
     public void endAuction(Item item) {
          // Reattach item
          [b]itemDAO.makePersistent(item);[/b]
          // Set winning bid
          Bid winningBid = itemDAO.getMaxBid( item.getId() );
          item.setSuccessfulBid(winningBid);
          item.setBuyer( winningBid.getBidder() );
          // Charge seller
         Payment payment = new Payment(item);
         paymentDAO.makePersistent(payment);
         // Notify seller and winner
         ...
      }
      ...
}


Top
 Profile  
 
 Post subject:
PostPosted: Fri Feb 16, 2007 1:29 pm 
Hibernate Team
Hibernate Team

Joined: Mon Aug 25, 2003 9:11 pm
Posts: 4592
Location: Switzerland
I prefer an extended persistence context. There are several chapters in the book which explain that.

_________________
JAVA PERSISTENCE WITH HIBERNATE
http://jpwh.org
Get the book, training, and consulting for your Hibernate team.


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

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.