-->
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.  [ 4 posts ] 
Author Message
 Post subject: Zugriff auf gemapptes Objekt in transienter Methode?
PostPosted: Fri Nov 14, 2008 7:24 am 
Beginner
Beginner

Joined: Fri Nov 14, 2008 7:11 am
Posts: 31
Hallo zusammen,

ich bin ein ziemlicher Newbie was Hibernate angeht und habe daher mal eine Frage: darf/kann/sollte man in einer Entity eine transiente Methode haben, die etwas berechnet und zu dieser Berechnung auf eine Instanz eines gemappten Objekts zugreift.

Also z.B:

Code:
public class A
{
  private Long id;
  private String s;
  private Integer i;
  private B b;

  [...] getter und setter

  @ManyToOne(optional = false, fetch = FetchType.EAGER)
  public B getB()
  {
    return b;
  }

  @Transient
  public Integer berechneEtwas()
  {
    return i - b.getI2(); // IST DAS HIER ERLAUBT?
  }
}



Code:
public class B
{
  private Long id;
  private Integer i2;

  [...] getter und setter
}


Danke vorab,
Ole


Top
 Profile  
 
 Post subject:
PostPosted: Wed Nov 19, 2008 5:25 pm 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
prinzipiell ja, bei manyToOne ist ja ohnehin Eager als default, so dass dadurch keine initialisierung entsteht.

Bei Lazy könnte es eine Exception geben, wenn die Session bereits zu ist

_________________
Best Regards
Sebastian
---
Training for Hibernate and Java Persistence
Tutorials for Hibernate, Spring, EJB, JSF...
eBook: Hibernate 3 - DeveloperGuide
Paper book: Hibernate 3 - Das Praxisbuch
http://www.laliluna.de


Top
 Profile  
 
 Post subject:
PostPosted: Thu Nov 20, 2008 3:48 am 
Beginner
Beginner

Joined: Fri Nov 14, 2008 7:11 am
Posts: 31
Du schreibst "prinzipiell ja". Soll das heißen "es ist möglich, aber nicht gerade schön" oder hast Du das nur wegen der Einschränkung auf Eager-Loading-Mappings geschrieben.

Das es bei Lazy-Loading-Mappings keine gute Idee ist, hatte ich mir auch schon gedacht. In diesem Fall fand ich die Lösung aber ganz elegant, da ich ansonsten irgendwo an anderer Stelle in der Businesslogik diese Funktion ohnehin bräuchte, sie aber eigentlich nur einen Wert ermittelt, der sich direkt aus den persistenten Attributen berechnen lässt.

Oder gibt es noch eine elegantere Lösung?


Top
 Profile  
 
 Post subject:
PostPosted: Thu Nov 20, 2008 3:57 am 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Es ging nur um das Lazy Loading. Sonst ist es in Ordnung.

_________________
Best Regards
Sebastian
---
Training for Hibernate and Java Persistence
Tutorials for Hibernate, Spring, EJB, JSF...
eBook: Hibernate 3 - DeveloperGuide
Paper book: Hibernate 3 - Das Praxisbuch
http://www.laliluna.de


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 4 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.