-->
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: n:m Beziehung mit Attributen in der Zwischentabelle wie?
PostPosted: Mon Oct 29, 2007 9:58 am 
Newbie

Joined: Mon Oct 29, 2007 9:36 am
Posts: 1
Moin,

hat jemand eine Ahnung wie man die in der Zwischentabelle vorhandene Spalten mit zusatzinformationen abbilden kann, und nicht als reine ManyToMany Zwischentabelle.
Zum Beispiel 2 Tabellen mit einer Zwischentabelle:


Tabellenname || spalte1 || spalte2 || spalte3

user || user_id || name
dokument || doc_id || name
linkuserdukument || user_id || doc_id || wasichbrauche


Wenn ich z.B. das mache z.B.:
Code:
@ManyToMany(cascade={PERSIST})
@JoinTable(name="inkuserdukument",joinColumns=@JoinColumn(name="user_id"),inverseJoinColumns=@JoinColumn(name="doc_id"))
   @OrderBy("id ASC")
   private List<Dokument> docs = new ArrayList<Dokument>();


dann kann ich ja nicht auf die wasichbrauche Spalte zugreifen. Wie kann ich das realisieren?

[/code]


Top
 Profile  
 
 Post subject:
PostPosted: Sat Nov 03, 2007 4:19 pm 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Es gibt verschiedene Ansätze. Eine einfache ist eine Beziehung 1:n:1 zu machen. Du hast also ein Zwischenobjekt. Alternativ kann auch das n eine Komponente sein. Ich bin mir nicht sicher, ob ich das nur bei mir Buch geschrieben oder auch in der Hibernate Referenz gesehen habe.
Schau Dir die Referenz einfach nochmal an.

_________________
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.  [ 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.