-->
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: unidirektionale Many2Many-Beziehung mit eigenem primaryKey
PostPosted: Wed Dec 10, 2008 5:58 am 
Newbie

Joined: Wed Dec 10, 2008 5:53 am
Posts: 2
Hallo zusammen,

Ich habe bisher gefunden, wie man eine Many2Many-Beziehung zwischen zwei Tabellen s und d über eine assozierte Tabelle (map) verknüpft, wobei in sämtlichen Beispielen die zwei Fremdschlüssel als Priämärschlüssel der Tabelle genutzt wird.

Code:
@Entity
   @Table(name="s")
   public class Src {
       @Id
       @Column(name="s_id")
       int getId() { ... }

       @ManyToMany
       @JoinTable(name="map",
                  joinColumns={@JoinColumn(name="s_key")},
                  inverseJoinColumns={@JoinColumn(name="d_key")})
       Collection<Dst> getChildren() { ... }
   }



Code:
@Entity
   @Table(name="d")
   public class Dst {
       @Id
       @Column(name="d_id")
       int getId() { ... }
    }


Wie ist dass Mapping jedoch zu verändern, wenn die Tabelle (map) einen eigenen Primärschlüssel hat. Sie hat ansonsten keine Attribute und die Beziehung muss auch nur auf einer Seite gemappt werden.

Die Anwendung muss auf einer bereits existierenden Datenbank arbeiten, so dass die Tabellenstruktur vorgegeben ist.

Bis für jeden Denkanstoß/Hinweis dankbar.
Sunshine08


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