-->
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: Warum: LazyLoadException?
PostPosted: Tue Jun 22, 2010 8:55 am 
Newbie

Joined: Tue Jun 22, 2010 4:07 am
Posts: 1
Meine Klasse
-Mitarbeiter erbt von der Klasse Person.

Nun möchte ich einfach per
Code:
Refraktionierer pp = (Refraktionierer) session.load(Refraktionierer.class, ID)

Die Klasse holen, was aber zur Exception führt.

Code:
Refraktionierer pp = (Refraktionierer) session.get(Refraktionierer.class, ID)


Get verursacht da keine Exception. Warum ist das eigentlich so?

Wie kann man das LazyLoading Problem eigentlich umgehen?


Top
 Profile  
 
 Post subject: Re: Warum: LazyLoadException?
PostPosted: Tue Jun 22, 2010 12:47 pm 
Beginner
Beginner

Joined: Thu Oct 04, 2007 12:22 pm
Posts: 48
Man müsste mehr code von Dir sehen, um es wirklich beurteilen zu können. Generell ist es so, dass load() mit einem Class-Proxy arbeitet, also die
Klasse erst bei Bedarf wirklich aus der Datenbank lädt, während get() sofort das Objekt lädt und initialisiert.
Lazy Loading kannst Du nur dann sicher verwenden, wenn das Objekt noch nicht detached ist - soll heißen, wenn Hibernate eine Referenz nachladen
möchte, die auf Lazy Loading gestellt ist, muss die Session noch offen sein. Wenn Du zu dem Zeitpunkt die Session nicht mehr geöffnet haben kannst
(aus welchen Gründen auch immer), musst Du Lazy Loading deaktivieren.


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.