JPA @ElementCollection 注释是否始终产生一对多关系?

发布于 2024-12-06 19:45:57 字数 346 浏览 0 评论 0原文

对于这个问题,请考虑以下示例:

@Entity
public class File {
    public static enum Permission { READABLE, WRITEABLE, EXECUTABLE }

    @ElementCollection
    @Enumerated(EnumType.ORDINAL)
    Set<Permission> permissions;

    // Omitted
}

假设枚举值以序数形式存储,JPA 是否总是为此集合创建一个额外的表?我可以更改它以使其不是一对多关系,即使用列而不是额外的表吗?

谢谢。

For this question, consider the following sample:

@Entity
public class File {
    public static enum Permission { READABLE, WRITEABLE, EXECUTABLE }

    @ElementCollection
    @Enumerated(EnumType.ORDINAL)
    Set<Permission> permissions;

    // Omitted
}

Assuming that the enum values are stored in the ordinal form, does JPA always create an extra table for this set? Can I alter this in order to make this not to be an one-to-many relationship, i.e., using a column instead of an extra table?

Thanks.

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

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

发布评论

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

评论(1

傲世九天 2024-12-13 19:45:57
  1. “一对多”是一种实体关联。这是值的集合,因此它不能是一对多。
  2. 从物理上来说,在单行的单个字段中存储多个值是不可能的,所以不,你不能让它这样做。
  3. 本质上,您要求的是一个基本属性,例如 private String Permissions;。这将使用同一个表中的单个列。
  4. 如果您想将多个值打包成一个值,例如在 Hibernate 保存时手动将所有权限组合成一个逗号分隔的字符串,您需要编写 自定义 UserType 来做到这一点。
  1. "one-to-many" is a type of entity association. This is a collection of values, so it can't be a one-to-many.
  2. It's physically impossible to store multiple values in a single field in a single row, so no, you can't make it do that.
  3. Essentially what you're asking for is a basic property, like private String permissions;. That would use a single column in the same table.
  4. If you're wanting to pack multiple values into a single value, like manually combining all the permissions into a comma-delimited string when Hibernate saves it, you'll want to write a custom UserType to do that.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文