Id 列来自其他表 JPA 实体

发布于 2024-12-10 21:51:03 字数 1226 浏览 0 评论 0原文

我的数据库中有两个表。表 1 包含 ID 和其他一些列。 Table2 是一个关系表,其中我将 table1 中的 PK 作为 table2 中的 id,但我不使用 Table2 中的 ID,它保存其他随机数据的一些值。

在 JPA 中,您必须使用 @Id 注释。我的问题是我想使用 table1 的实体作为 table2 实体的 @Id 放入。这可能吗?如果是,那么如何实现?

到目前为止的代码: 表 1

@Entity
@Table(name="Log", schema="logs")
@PersistenceUnit(name="domas")
@Inheritance(strategy = InheritanceType.JOINED)
@DiscriminatorColumn(name="type", discriminatorType = DiscriminatorType.STRING)
public abstract class Log implements Serializable {

    private static final long serialVersionUID = 1L;

    @Id
    @Column(name="id", nullable=false)
    public String id;

    @Column(name="type", nullable=false)
    @Enumerated(EnumType.STRING)
    public LOG_TYPE type;
// and alot more not related code

表 2

@Entity
@Table(name="Log_Entity", schema="relations")
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name = "relationType", discriminatorType  = DiscriminatorType.STRING)
public abstract class LogRelation implements Serializable {

    private static final long serialVersionUID = 1L;

    @Id
    @OneToOne(mappedBy="id")
    public Log log;

// and alot more not related code

I have two tables in my DB. Table1 with ID and some other columns. Table2 is a relations table where I have the PK from table1 as id in table2 but i dont use a ID in Table2 and it holds some values to other random data.

In JPA you have to use the @Id annotation. My problem is that I would like to use the entity for table1 to be put in as the @Id for table2 entity. Is this possible and if yes, then how?

Code so far:
TABLE 1

@Entity
@Table(name="Log", schema="logs")
@PersistenceUnit(name="domas")
@Inheritance(strategy = InheritanceType.JOINED)
@DiscriminatorColumn(name="type", discriminatorType = DiscriminatorType.STRING)
public abstract class Log implements Serializable {

    private static final long serialVersionUID = 1L;

    @Id
    @Column(name="id", nullable=false)
    public String id;

    @Column(name="type", nullable=false)
    @Enumerated(EnumType.STRING)
    public LOG_TYPE type;
// and alot more not related code

Table 2

@Entity
@Table(name="Log_Entity", schema="relations")
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name = "relationType", discriminatorType  = DiscriminatorType.STRING)
public abstract class LogRelation implements Serializable {

    private static final long serialVersionUID = 1L;

    @Id
    @OneToOne(mappedBy="id")
    public Log log;

// and alot more not related code

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

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

发布评论

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

评论(2

浅浅 2024-12-17 21:51:03

如果您没有具有属性名称 id 和类型 LogRelation 的 @OneToOne 反面,则此mappedBy 没有意义:

@OneToOne(mappedBy="id")

通过以下操作,它将起作用:

@Id
@JoinColumn(name="lr_id")//or whatever column name you prefer
@OneToOne
Log log;

This mappedBy does not make sense if you do not have @OneToOne inverse side with attribute name id and type LogRelation:

@OneToOne(mappedBy="id")

With following it will work:

@Id
@JoinColumn(name="lr_id")//or whatever column name you prefer
@OneToOne
Log log;
银河中√捞星星 2024-12-17 21:51:03

您的意思是“复合身份”,其中一个对象的身份是另一个对象的身份(一部分)。 http://www.datanucleus.org/products/accessplatform_3_0/jpa /orm/compound_identity.html#1_1_uni

You mean "compound identity", where the identity of one object is (part of) the identity of another object. http://www.datanucleus.org/products/accessplatform_3_0/jpa/orm/compound_identity.html#1_1_uni

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