从集合中删除元素

发布于 2024-08-28 14:34:21 字数 865 浏览 5 评论 0原文

我有 2 个课程 Tema(作业)和 Disciplina(课程),其中课程有一组作业。 在 Hibernate 中,我已将其映射为一对多关联,如下所示:

<class name="model.Disciplina" table="devgar_scoala.discipline" >
<id name="id"  >
    <generator class="increment"/>
</id> 
<set name="listaTeme" table="devgar_scoala.teme">
    <key column="Discipline_id" not-null="true" ></key>
    <one-to-many class="model.Tema" ></one-to-many>
</set>
</class>

<class name="model.Tema" table="devgar_scoala.teme" >
<id name="id">
    <generator class="increment" />
</id>
<property name="titlu" type="string" />
<property name="cerinta" type="binary">
    <column name="cerinta" sql-type="blob" />
</property>
</class>

问题是它将添加(在表“Teme”中插入行),但它不会删除任何行,并且我不会抛出任何异常。

我使用 merge() 方法。

I have 2 classes Tema(Homework) and Disciplina (course), where a Course has a Set of homeworks.
In Hibernate i have mapped this to a one-to-many associations like this:

<class name="model.Disciplina" table="devgar_scoala.discipline" >
<id name="id"  >
    <generator class="increment"/>
</id> 
<set name="listaTeme" table="devgar_scoala.teme">
    <key column="Discipline_id" not-null="true" ></key>
    <one-to-many class="model.Tema" ></one-to-many>
</set>
</class>

<class name="model.Tema" table="devgar_scoala.teme" >
<id name="id">
    <generator class="increment" />
</id>
<property name="titlu" type="string" />
<property name="cerinta" type="binary">
    <column name="cerinta" sql-type="blob" />
</property>
</class>

The problem is that it will add (insert rows in the table 'Teme') but it won't delete any rows and i get no exceptions thrown.

Im using the merge() method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烂柯人 2024-09-04 14:34:21

虽然您的问题不清楚(如何保存和删除?),但我建议您需要设置 cascade

<set cascade="all-delete-orphan">

作为旁注 - 避免使用您的母语名称。

Although your question is unclear (how do you save and delete?), I'd suggest you need to set cascade:

<set cascade="all-delete-orphan">

As a sidenote - avoid names in your native language.

冧九 2024-09-04 14:34:21

根据您的描述,我了解 Tema 不能没有其 Disciplina 而存在:如果您从集合中删除 Tema,您希望它被删除。要告诉 Hibernate 执行此操作,您必须使用 cascade="all-delete-orphan"

<set name="listaTeme" table="devgar_scoala.teme" cascade="all-delete-orphan">
    <key column="Discipline_id" not-null="true" ></key>
    <one-to-many class="model.Tema" ></one-to-many>
</set>

请参阅在线文档

According to your description, I understand that a Tema cannot exist without its Disciplina: if you remove a Tema from the collection, you want it to be deleted. To tell Hibernate to do this, you must use cascade="all-delete-orphan".

<set name="listaTeme" table="devgar_scoala.teme" cascade="all-delete-orphan">
    <key column="Discipline_id" not-null="true" ></key>
    <one-to-many class="model.Tema" ></one-to-many>
</set>

Refer to the online documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文