-->
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 mehrere @oneToone
PostPosted: Mon May 10, 2010 1:13 pm 
Newbie

Joined: Thu Oct 29, 2009 2:59 am
Posts: 10
Hallo,

ich glaub ich hab noch ein spezielles Problem.
Ich habe eine Tabelle TParticipant und eine Tabelle TContact und zwischen diesen Tabellen besteht eine OneToOne- Beziehung, wobei sich die Primary keys der Tabellen referenzieren. Das klappt alles sehr gut. So schaut der Generator aus, der dafür sorgt, dass der Primary key von TParticipant auch in TContact verwendet wird:

Code:
@Entity
@SuppressWarnings("serial")
@Table(name="TParticipant")
public class Participant implements Serializable {

  private Integer pk_part;
  private String firstname;
  private String surname;
  private String chipnumber;
  private Contact contact;
  private Paid paid;
 
  public Participant() {}

@Id
  @GeneratedValue(generator="foreign")
  @GenericGenerator(name="foreign", strategy = "foreign", parameters={
     @Parameter(name="property", value="contact")  // die id von dieser Entity wir auch in Contact eingetragen
      })
  public Integer getPk_part() {
    return pk_part;
    }
...


Jetzt hat aber die Tabelle TParticipant nicht nur eine OneToOne Beziehung zu TContact, sondern auch eine zu TPaid, also ich bräuchte ein weiteres property -> paid,
jetzt hab ichs schon so versucht:

Code:
@Id
  @GeneratedValue(generator="foreign")
  @GenericGenerator(name="foreign", strategy = "foreign", parameters={
     @Parameter(name="property", value="contact"),
     @Parameter(name="property", value="paid")  // hier noch eine weitere Referenz
      })
  public Integer getPk_part() {
    return pk_part;
    }


Das funktioniert aber leider nicht, es wird nur das 2. property aktiv (in diesem Fall paid), das erste bleibt null.

Weiß jemand wie ich das machen kann bzw. ob das irgenwie funktioniert und wie?
Besten Dank.
lg


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:
cron
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.