-->
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: Nhibernate und Preload Pattern
PostPosted: Fri Apr 04, 2008 1:28 am 
Newbie

Joined: Thu Apr 03, 2008 6:57 am
Posts: 2
Hallo!

Im Javamagazin 4.08 habe ich den Preload Pattern für Hibernate kennengelernt. Hier ist die einzige online quelle die ich darüber finden konnte:
http://www.kiltz.de/Wiki.jsp?page=Hibernate.Mapping.Lazy

Meine Frage:
Hat es schon jemand geschafft den Pattern erfolgreich in nhibernate und c# umzusetzen?

Meine Probleme:
Die Zeile
Code:
if( Hibernate.isInitialized(entity) ) {

in der methode "preload" liefert IMMER true zurück

UND

Beim Zugriff auf einen Getter der ein mit "many-to-one" gemapptes Objekt zurückliefern soll, bekomme ich zwar ein Objekt vom erwarteten Typ, aber es ist nur ein Proxy und alle Properteies sind "null"
Code:
private Object invokeGetter(Object entity, Preload preload) {

        String getterName = getPropertyGetterName(preload.getProperty());
        try {
          Method method = preload.getModelClass().getMethod(getterName, (Class[]) null);
          return method.invoke(entity, (Object[]) null);
        } catch (Exception ex) {
          throw new RuntimeException("Can't invoke getter for property: " +
                                                        preload.getProperty(), ex);
        }
      }


Danke für Hilfe im voraus :)
MFG


Top
 Profile  
 
 Post subject:
PostPosted: Fri Apr 11, 2008 10:51 am 
Newbie

Joined: Fri Apr 11, 2008 10:42 am
Posts: 2
Unter http://entwickler-forum.de/showthread.php?t=47067 gibt es einen Verbesserungsvorschlag zum Preload Pattern.


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.