在我的场景中,我有 2 个表:专辑和图像(关系是一对多的)。
这是简化的映射:
<hibernate-mapping>
<class name="Album" table="album">
<id name="id" column="album_id" type="int">
<generator class="sequence">
<param name="sequence">TestObject_seq</param>
</generator>
</id>
<set name="image" table="image" order-by="orderBy">
<key column="album_id" />
<composite-element class="Image">
<property name="caption" column="caption" type="string"/>
<property name="path" column="path" type="string"/>
<property name="orderBy" column="orderBy" type="int"/>
</composite-element>
</set>
</class>
</hibernate-mapping>
我正在这样做:1. 在 db 中查找对象,2. 从集合中删除一些记录,3. 调用 saveOrUpdate。
Album album = dao.getAlbum("Name of album");
Set<Image> imagesToRemove = getImagesToRemove();
album.getImages().removeAll(imagesToRemove);
dao.saveOrUpdate(album);
dao.flushAndClear();
一切正常,直到表格图像中的某些值为空。例如标题有空值。
在日志中我可以看到:
DEBUG SQL:292 - delete from image where album_id=? and caption=? and path=? and orderBy=?
DEBUG AbstractBatcher:343 - preparing statement
DEBUG IntegerType:59 - binding '463' to parameter: 1
DEBUG StringType:52 - binding null to parameter: 2
...
在这种情况下,删除语句不会删除任何记录。
我做错了什么?