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.