Hi all,
firstly sorry for my english.
I have a strange exception from hibernate
Code:
java.sql.BatchUpdateException - Column 'produitId' cannot be null
but this
produitId is inserted correctly in the database
Here is my mapping xml
Code:
<class name="entity.Produit" table="produits">
<id name="id">
<generator class="native" />
</id>
<property name="prix" />
<property name="disponibilite" />
<property name="nbrImage" />
<property name="reduction" />
<property name="produitTaille" />
<property name="produitCouleur" />
<set name="produitInfo" lazy="false" cascade="all">
<key column="produitId"/>
<one-to-many class="entity.ProduitInfo" />
</set>
</class>
<class name="entity.ProduitInfo" table="produitinfo">
<composite-id>
<key-property name="produitId"/>
<key-property name="langueId"/>
</composite-id>
<property name="titre" />
<property name="description" />
</class>
Class
Produit has a SET
produitInfo and everything works normally but in the end it generate this exception.
thanks.