-->
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.  [ 3 posts ] 
Author Message
 Post subject: Many-To-Many - Beziehungstabelle mit zusätzl. Attribut
PostPosted: Thu Jun 10, 2010 3:06 am 
Newbie

Joined: Mon Mar 26, 2007 10:48 am
Posts: 13
Hi Leute,

Habe ein Problem:

Personen <-> Missionen
1 Person kann in mehreren Missionen eingesetzt werden
1 Mission kann mehrere Personen haben.

Bisher hatte eine Mission immer genau eine Dauer (in Stunden - abgespeichert auf der Missions-Tabelle). Jetzt sollte aber die Dauer beliebig abgespeichert werden sollen.

sprich jede Person kann unterschiedliche Stunden bei einem Einsatz sein - somit kann die Dauer nicht mehr auf der MissionsTabelle abgespeichert werden - müsste auf die Beziehungstabelle wandern!!!

Aber wie wird sowas mit hibernate realisiert?

meine Beiden xml files:

Personal.hbm.xml
Code:
<hibernate-mapping>
<class name="com.triplex.dol.Personal" table="personal">
     <id name="personalId" column="personalId" type="java.lang.Integer">
     </id>
     <property name="zuname" column="zuname" type="java.lang.String" />
     <bag name="missions" table="personal_mission" cascade="all" lazy="false">
      <key column="personalId"/>
      <many-to-many column="missionId"  class="com.triplex.dol.Mission" />
    </bag> 
</class>
</hibernate-mapping>


Mission.hbm.xml
Code:
<hibernate-mapping>
<class name="com.triplex.dol.Mission" table="mission">
     <id name="missionId" column="missionId" type="java.lang.Integer">
     <generator class="increment"/>
     </id>
     <property name="bezeichnung" column="bezeichnung" type="java.lang.String" />
     <property name="datum" column="datum" type="java.util.Date" />
     <property name="dauer" column="dauer" type="java.lang.Integer" />
     <bag name="personal" table="personal_mission" cascade="all" lazy="false">
      <key column="missionId"/>
      <many-to-many column="personalId"  class="com.triplex.dol.Personal"/>
    </bag> 
</class>
</hibernate-mapping>


Hoffe ich hab es ausreichend erklärt - vllt hat jmd. eine Ideee ...

aja es gibt ja die tabelle personal_mission - aber es gibt dafür kein Java-DomainObject.. ein Personal_Mission.java wäre notwendig oder so...

lg
Triplex


Top
 Profile  
 
 Post subject: Re: Many-To-Many - Beziehungstabelle mit zusätzl. Attribut
PostPosted: Wed Sep 08, 2010 2:45 am 
Newbie

Joined: Mon Mar 26, 2007 10:48 am
Posts: 13
push!!!!!

problem besteht weiterhin!

danke!


Top
 Profile  
 
 Post subject: Re: Many-To-Many - Beziehungstabelle mit zusätzl. Attribut
PostPosted: Sat Sep 11, 2010 5:43 am 
Newbie

Joined: Tue Aug 24, 2010 7:04 am
Posts: 14
Du musst die Beziehung selbst zu einem First Class Object machen, sprich du brauchst eine dritte Entity für die Assoziation. Die Assoziations-Entity beinhaltet dann zwei Assoziationen, entweder ManyToOne oder OneToOne. Für den primary key benötigst du die IdClass Annotation. Siehe folgendes Beispiel: http://www.java2s.com/Code/Java/JPA/Set ... undKey.htm. Das Beispiel ist allerdings zumindest in einer sache fehlerhaft. Die @Id Annotationen in der Klasse ProjectAssignment muss auf die Assoziationen nicht auf die int Felder. Ein Beispiel findet man auch im Buch "Pro JPA 2: Mastering the Java Persistence API" im Kapitel Advanced.

Gruß
Michael


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 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.