-->
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: Objektbeziehung über Setter auf ForeignKey
PostPosted: Fri May 27, 2005 5:57 am 
Newbie

Joined: Tue May 24, 2005 9:30 am
Posts: 3
Hibernate version: 3.0.3

Zwei Tabellen A und B stehen in einer 1:n Beziehung, B besitzt einen ForeignKey auf A. Wird ein Objekt B erzeugt, ist das zugordnete Objekt A greifbar über
Code:
/**
* @hibernate.many-to-one
*       table="A"
*       class="com...A"
*/
public A getA(){
  return this.a;
}
public void setA( A newA ){
  this.a = newA;
}


Nun wird aber B einem anderen A zugeordnet, und ich bekomme (aus einem DataTransferObject) nur die ID des Objekts A, also den ForeignKey. Wie löst man das am geschicktesten? Gibt es vielleicht einen Mapping- (bzw. XDoclet-) Eintrag wie
Code:
/**
* @hibernate.???
*/
public long getAId(){
  return this.a.getId();
}
public void setAId( long newAId ){
  this.a.setId( newAId );
}


Vielen Dank


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 27, 2005 6:22 am 
Newbie

Joined: Fri May 27, 2005 5:41 am
Posts: 5
Location: germany
Ich hoff' mal, dass es sowas nicht gibt ;)

Das Problem: (?!)
du kannst nicht das A-Objekt für B setzen, weil du von diesem
nur die ID hast

Die Lösung:

dafür ist dann die Session zuständig, die dir eben nach dieser ID
das passende/ neue A-Objekt liefert:

" session.load( ... ) ",
[hierbei ist aid ein Integer und session ... naja]

so könnte man schreiben

B-methode: " setNewA( Integer aid) {
this.A = session.load( A.class, aid );
}



hoffe das hilft

mfg CC


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.