-->
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: unidirektional, ManyToOne und OneToOne, mit compositeId...
PostPosted: Wed Jul 02, 2008 7:34 am 
Newbie

Joined: Wed Jul 02, 2008 7:05 am
Posts: 2
Hallo zusammen!

Ich bin noch Hibernate-Anfänger und habe Probleme mit Hibernate folgende Beziehungen abzubilden:
In der Tabelle angestellter soll eine unidirektionale n:1 Beziehung mit disco bestehen und eine unidirektionale 1:1 mit arbeitsplatz.
Es muss in der tabelle angestellter auch ein aus 2 Fremdschlüsseln zusammen gesetzter Primärschlüssel sein.

Tabelle disco 1-------n Tabelle angestellter 1-------1 Tabelle arbeitsplatz
id (PK)______________disco_id (PK) ____________id(PK)
name_______________arbeitsplatz_id (PK)________ bezeichnung
___________________arbeitsstunden

Was ich bisher versucht habe:

Klassse Disco:
Code:
@Entity
@SequenceGenerator(name="disco_seq", sequenceName="disco_id_seq")
@Table(name="disco")
public class Disco implements Serializable
{
   private int id;
   private String name;
   
   public Disco()
   {
     
   }
   
   @Id
   @GeneratedValue(strategy = GenerationType.AUTO)
   public int getId()
   {
      return id;
   }
   
   public void setId(int id)
   {
      this.id = id;
   }
   
   public String getName()
   {
      return name;
   }
   
   public void setName(String name)
   {
      this.name = name;
   }
}


Klasse Angestellter:
Code:
@Entity
@IdClass(AngestellterId.class)
@Table(name = "angestellter")
public class Angestellter implements Serializable
{
   private Disco disco
   private Arbeitsplatz arbeitsplatz;
   private int arbeitsstunden;
   
   public Angestellter()
   {
     
   }
   
   @Id
   @ManyToOne
   @Column(name = "disco_id")
   @PrimaryKeyJoinColumn(name = "disco_id")   
   public Disco getDisco()
   {
      return disco;
   }
   
   public void setDisco(Disco disco)
   {
      this.disco = disco;
   }
   
        @Id
   @OneToOne
   @Column(name = "arbeitsplatz_id")
   @PrimaryKeyJoinColumn(name = "arbeitsplatz_id")   
   public arbeitsplatz getarbeitsplatz()
   {
      return arbeitsplatz;
   }
   
   public void setArbeitsplatz(Arbeitsplatz arbeitsplatz)
   {
      this.arbeitsplatz = arbeitsplatz;
   }
   
   public int getArbeitsstunden()
   {
      return arbeitsstunden;
   }
   
   public void setArbeitsstunden(int arbeitsstunden)
   {
      this.arbeitsstunden = arbeitsstunden;
   }
}


Klasse Arbeitsplatz:
Code:
@Entity
@SequenceGenerator(name="arbeitsplatz_seq", sequenceName="arbeitsplatz_id_seq")
@Table(name="arbeitsplatz")
public class Arbeitsplatz implements Serializable
{
   private int id;
   private String bezeichnung;
   
   public Arbeitsplatz()
   {
     
   }
   
   @Id
   @GeneratedValue(strategy = GenerationType.AUTO)
   public int getId()
   {
      return id;
   }
   
   public void setId(int id)
   {
      this.id = id;
   }
   
   public String getBezeichnung()
   {
      return bezeichnung;
   }
   
   public void setBezeichnung(String bezeichnung)
   {
      this.bezeichnung = bezeichnung;
   }
}


Klasse AngestellterID:
Code:
public class AngestellterId implements Serializable
{
   private Disco disco;
   private Arbeitsplatz arbeitsplatz;
   
   public Disco getDisco()
   {
      return disco;
   }
   
   public void setDisco(int disco)
   {
      this.disco = disco;
   }
   
   public Arbeitsplatz getArbeitsplatz()
   {
      return arbeitsplatz;
   }
   
   public void setArbeitsplatz(Arbeitsplatz arbeitsplatz)
   {
      this.arbeitsplatz = arbeitsplatz;
   }
}


Ich glaube nicht, daß das so richtig ist. Wenn Hibernate die Tabellen erstellen möchte, will er die Primary-Keys halt mit einem tinyblob erstellen und das sollte ja nicht sein. Ich weiss wirklich nicht mehr weiter. Auch Recherche im Internet hat mich nicht weitergebracht.
Schon mal Danke im Vorraus.

Hibernate version: 3.2.5

Name and version of the database you are using: MySQL5



[/code]


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jul 08, 2008 5:50 am 
Newbie

Joined: Wed Jul 02, 2008 7:05 am
Posts: 2
Ich habe das soweit jetzt mit einer Primary Key Class gelöst.
Wen es interessiert: http://java-aap.blogspot.com/2006/04/hibernate-annotations-composite.html

Jetzt habe ich nur noch ein kleines Problemchen:
Wenn ich in der Primary Key Class eine OneToOne nutzen will, bekomme ich eine nullPointer Exception:
Caused by: java.lang.NullPointerException
at org.hibernate.cfg.AnnotationBinder.bindOneToOne(AnnotationBinder.java:1960).
Ändere ich die OneToOne in eine ManyToOne läuft es ohne Probleme.

Code:
@Embeddable
public class AngestellterPk implements Serializable
{
   /**
    *
    */
   private static final long serialVersionUID = -5852230979790770298L;
   
   @ManyToOne
   private Disco disco;
   @OneToOne
   private Arbeitsplatz arbeitsplatz;
   
   public Disco getDisco()
   {
      return disco;
   }
   
   public void setDisco(Disco disco)
   {
      this.disco = disco;
   }
   
   public Arbeitsplatz getArbeitsplatz()
   {
      return arbeitsplatz;
   }
   
   public void setArbeitsplatz(Arbeitsplatz arbeitsplatz)
   {
      this.arbeitsplatz = arbeitsplatz;
   }
}


Code:
@Entity
@Table(name = "angestellter")
public class Angestellter implements Serializable
{   
   /**
    *
    */
   private static final long serialVersionUID = -4967988198487456521L;
   @Id
   private AngestellterPk primaryKey = new AngestellterPK();
   @Column(name = "disco_id", nullable = false, insertable = false, updatable = false)
   private long depot;
   @Column(name = "arbeitsplatz_id", nullable = false, insertable = false, updatable = false)
   private long arbeitsplatz;
   private int arbeitsstunden;

        public Disco getDisco()
   {
      return primaryKey.getDisco();
   }

   public void setDisco(Disco disco)
   {
      primaryKey.setDisco(disco);
   }

   public Arbeitsplatz getArbeitsplatz()
   {
      return primaryKey.getArbeitsplatz();
   }

   public void setArbeitsplatz(Arbeitsplatz arbeitsplatz)
   {
      primaryKey.setArbeitsplatz(stock);
   }

----------------------Snip------------------------------
//mehr getter und setter
}



Ich hoffe mir kann jemand helfen.


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.