休眠可选连接

发布于 2024-10-20 17:16:37 字数 402 浏览 8 评论 0原文

我有一个按照以下代码使用一对一映射的实体:

@Entity
@Table(name = "my_entity")
public class MyEntity
{
    ...
    @OneToOne
    @JoinColumn(name = "site_id")
    private Site site;
    ...
}

我刚刚被告知必须开始存储具有“site_id”值的 MyEntity 条目,该值可能不存在于站点表中。我仍然需要存储“site_id”的值,但它与站点实体不匹配。

我唯一能想到的是创建映射到同一个表的第二种类型的实体,该实体不会在站点表上映射一对一/联接。

有没有办法在不为同一个表创建第二个映射对象的情况下执行此操作?

谢谢,保罗。

I have an entity mapped with a One-To-One as per the following code:

@Entity
@Table(name = "my_entity")
public class MyEntity
{
    ...
    @OneToOne
    @JoinColumn(name = "site_id")
    private Site site;
    ...
}

I've just been told that I must start storing MyEntity entries with a value for 'site_id' which may not exist within the Site table. I still need to store the value for 'site_id' however it will not match a Site entity.

The only thing I can think of is to create a 2nd type of Entity mapped to the same table that doesn't map a One-To-One/join on the site table.

Is there a way to do this without creating a 2nd mapped object for the same table?

thanks, paul.

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

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

发布评论

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

评论(1

淡淡绿茶香 2024-10-27 17:16:37

这是非常糟糕的设计。外键应该是外键,并且不应该指向不存在的行。我会修复数据/设计。

如果您真的不能,请使用描述的 NotFound 注释 此处

默认情况下,当 Hibernate 由于预期的关联元素不在数据库中(关联列上的 ID 错误)而无法解析关联时,Hibernate 会引发异常。这对于遗留的和维护不善的模式可能会带来不便。您可以要求 Hibernate 忽略此类元素,而不是使用 @NotFound 注释引发异常。此注释可用于 @OneToOne(带 FK)、@ManyToOne、@OneToMany 或 @ManyToMany 关联。

This is very bad design. A foreign key should be a foreign key, and should not point to non-existing rows. I would fix the data/design.

If you really really can't, use the NotFound annotation described here :

By default, when Hibernate cannot resolve the association because the expected associated element is not in database (wrong id on the association column), an exception is raised by Hibernate. This might be inconvenient for legacy and badly maintained schemas. You can ask Hibernate to ignore such elements instead of raising an exception using the @NotFound annotation. This annotation can be used on a @OneToOne (with FK), @ManyToOne, @OneToMany or @ManyToMany association.

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