-->
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: Hibernate Objeck locking
PostPosted: Sun Jan 11, 2009 3:16 pm 
Beginner
Beginner

Joined: Mon Dec 29, 2008 3:25 pm
Posts: 20
Hallo zusammen,

ich hab eine frage über das Hibernate locking...
Die HibernateUtil klasse ist genau die gleiche wie indem hibernate tutorial

Also ich habe 2 clients die sich mit hibernate auf einen db-server verbinden

so der eine client holt sich ein buch und lockt dieses...


Code:
   private Book getBook()
   {
      Session session = HibernateUtil.getSessionFactory().getCurrentSession();
      session.beginTransaction();
      Book b = (Book) session.load(Book.class, 1, LockMode.READ);
      session.getCurrentLockMode(b);
      return b;
   }


der 2 client holt sich das gleich Book
Code:
   private Book getLockedBook()
   {
      Session session = HibernateUtil.getSessionFactory().getCurrentSession();
      session.beginTransaction();
      Book b = (Book) session.load(Book.class, 1);
      session.getCurrentLockMode(b);
      
      return b;
      
   }


so jetzt ist das buch aber nicht mehr gelockt obwohl er das gleiche buch holt warum????



Also vielleicht erklär ich noch kurz mein Ziel...
Wenn sich ein Client(der 1. wo kommt) ein Buch holt soll er es sperren so dass andere Clients dieses Buch nicht verändern können sondern nur "anschauen" aber nicht schreiben...
wie kann man sowas umsetzen

danke und schönen Sonntag noch =)


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.