-->
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: Einfügen in m:n verbindungstabelle
PostPosted: Wed Feb 07, 2007 8:26 am 
Beginner
Beginner

Joined: Thu Jan 04, 2007 5:44 am
Posts: 26
Location: Innsbruck - Sivas(TR) - Bregenz
Hi benutze hibernate 3.2
java 1.5
mysql


hab ne n:m assoziation mit einem table dazwischen. So auf die art
bestellung
artikel
bestellungartikel

in bestellungartikel ist noch der preis drin. Wie kann ich nun ein neues bestellungsartikel einfügen?

Folgende codes habe ich:



Mappingdatei bestellartikel
Code:
<hibernate-mapping>
    <class name="com.ternasoft.crm.model.Bestellartikel" table="bestellartikel" catalog="hds_test">
        <composite-id name="id" class="com.ternasoft.crm.model.BestellartikelId">
            <key-property name="bestellid" type="java.lang.Integer">
                <column name="bestellid" />
            </key-property>
            <key-property name="artikelid" type="java.lang.Integer">
                <column name="artikelid" />
            </key-property>
        </composite-id>
        <many-to-one name="artikel" class="com.ternasoft.crm.model.Artikel" update="false" insert="false" fetch="select">
            <column name="artikelid" not-null="true" />
        </many-to-one>
        <many-to-one name="bestellung" class="com.ternasoft.crm.model.Bestellung" update="false" insert="false" fetch="select">
            <column name="bestellid" not-null="true" />
        </many-to-one>
        <property name="preis" type="java.lang.Double">
            <column name="preis" precision="15" />
        </property>
    </class>
</hibernate-mapping>


Mapping Bestellung
Code:
<hibernate-mapping>
    <class name="com.ternasoft.crm.model.Bestellung" table="bestellung" catalog="hds_test">
        <id name="bestellid" type="java.lang.Integer">
            <column name="bestellid" />
            <generator class="identity" />
        </id>
        <property name="bestelldatum" type="java.util.Date">
            <column name="bestelldatum" length="19" />
        </property>
        <property name="sendedatum" type="java.util.Date">
            <column name="sendedatum" length="19" />
        </property>   
        <set name="bestellartikel" inverse="true" cascade="all">
          <key>
             <column name="bestellid" />
          </key>
          <one-to-many class="com.ternasoft.crm.model.Bestellartikel" />
        </set>
    </class>
</hibernate-mapping>



Mapping artikel
Code:
<hibernate-mapping>
    <class name="com.ternasoft.crm.model.Artikel" table="artikel" catalog="hds_test">
    <cache usage="nonstrict-read-write"/>
        <id name="artikelid" type="java.lang.Integer">
            <column name="artikelid" />
            <generator class="identity" />
        </id>
        <property name="bezeichnung" type="java.lang.String">
            <column name="bezeichnung" length="50" />
        </property>
        <property name="preis" type="java.lang.Double">
            <column name="preis" precision="15" />
        </property>
        <property name="defaultinsert" type="java.lang.Boolean">
            <column name="defaultinsert"/>
        </property>
       
        <set name="bestellartikel" inverse="true" cascade="all">
          <key>
             <column name="artikelid" />
          </key>
          <one-to-many class="com.ternasoft.crm.model.Bestellartikel" />
        </set>
    </class>
</hibernate-mapping>


mein hibernate codegeneriere hat noch ein Objekt BestellartikelID generiert mit der id von artikel und bestellung. Wie muss ich da nun vorgehen wenn ich zb eine bestellung inserten will..?

Folgender pseudecode zeigt wie ich vorgehe:

Code:
Transaction begin:
Bestellung b = new Bestellung();
Artikel a1=artikeldao.findbyid(1);
Artikel a2=artikeldao.findbyid(2);

BestellArtikel ba1=new BestellArtikel();
BestellArtikel ba2=new BestellArtikel();

ba1.setBestellung(b);
ba1.setArtiklel(a1);

ba2.setBestellung(b);
ba2.setBestellung(a2);

bestellungdao.saveOrupdate(b);
Transaction commit:


Die bestellung ist drin doch kein bestellungsartikel.
Danke im voraus für die tipps.


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.