我有一个Gfh_i18n
实体,带有一个复合键(@IdClass
):
@Entity @IdClass(es.caib.gesma.petcom.data.entity.id.Gfh_i18n_id.class)
public class Gfh_i18n implements Serializable {
@Id @Column(length=10, nullable = false)
private String localeId = null;
@Id <-- This is the attribute causing issues
private Gfh gfh = null;
....
}
和id类
public class Gfh_i18n_id implements Serializable {
private String localeId = null;
private Gfh gfh = null;
...
}
正如这写的,这是有效的。问题是,我还有一个Gfh
课程与@OneToMany
有Gfh_i18n
的关系:
@OneToMany(mappedBy="gfh")
@MapKey(name="localeId")
private Map<String, Gfh_i18n> descriptions = null;
使用Eclipse Dali,这给了我以下错误:
In attribute 'descriptions', the "mapped by" attribute 'gfh' has an invalid mapping type for this relationship.
如果我只是尝试这样做,请Gfh_1i8n
@Id @ManyToOne
private Gfh gfh = null;
它解决了上一个错误,但在Gfh_i18n
中给出了一个,说明
The attribute matching the ID class attribute gfh does not have the correct type es.caib.gesma.petcom.data.entity.Gfh
This question与我的相似,但我不完全理解为什么我应该使用@EmbeddedId
(或者如果有某种方法可以@IdClass
使用@ManyToOne
)
我使用的是JPA 2.0而不是Hibernate(JBoss 6.1)
有什么想法吗?提前谢谢。
答案 0 :(得分:7)
您正在处理“派生身份”(在JPA 2.0规范第2.4.1节中描述)。
您需要更改您的ID类,以便与“子”实体(在您的案例中为gfh
)中的“父”实体字段对应的字段具有与“父”实体的单个对应的类型@Id
字段(例如String
),或者,如果“父级”实体使用IdClass
,则IdClass
(例如Gfh_id
)。
在Gfh_1i8n
中,您应该声明gfh
,如下所示:
@Id @ManyToOne
private Gfh gfh = null;
假设GFH
有一个@Id
类型的String
字段,您的ID类应如下所示:
public class Gfh_i18n_id implements Serializable {
private String localeId = null;
private String gfh = null;
...
}