gpt4 book ai didi

hibernate 3.6.7 : Problem with @ANY and Foreign-Key

转载 作者:行者123 更新时间:2023-12-01 05:38:35 24 4
gpt4 key购买 nike

我有实体“用户”和“客户”:

@Entity
@Table(name = "USR_USER")
public class User extends PersistentObject {

[...]

@Any(metaColumn = @Column(name = "USR_OWNERTYPE"))
@AnyMetaDef(idType = "long", metaType = "string", metaValues = {
@MetaValue(targetEntity = Customer.class, value = "CST"),
@MetaValue(targetEntity = Client.class, value = "CLT") })
@JoinColumn(name = "USR_OWNERID")
private PersistentObject owner;
}

@Entity
@Table(name = "CST_CUSTOMER")
public class Customer extends PersistentObject {

@Id
@GeneratedValue
@Column(name="CST_ID")
private long id;

[...]

// @OneToMany(mappedBy = "owner")
private transient Set<User> users;
}

运行这个(使用spring),我得到以下异常:
Caused by: org.hibernate.MappingException: Foreign key (FK35B91BB65D577CEF:USR_USER [USR_OWNERTYPE,USR_OWNERID])) must have same number of columns as the referenced primary key (CST_CUSTOMER [CST_ID])

我不明白这一点,因为我将@AnyMetaDef(在“User”中)中的“Customer”类映射到常量“CST”。

我究竟做错了什么?

在此先感谢您的帮助
托马斯

最佳答案

“为这种关联指定外键约束是不可能的。” -- http://docs.jboss.org/hibernate/core/3.6/reference/en-US/html/mapping.html#mapping-types-anymapping

编辑 :@Any 的另一端您想要的是@OneToAny,而这并不存在。可能是您在不适当的地方使用了 @Any 映射。再次 from the docs :“这不是映射多态关联的常用方法,您应该仅在特殊情况下使用它。例如,对于审计日志、用户 session 数据等。”

仔细看看inheritance mapping ,看看其中一个是否不是映射你们关系的更合适的方式。

关于 hibernate 3.6.7 : Problem with @ANY and Foreign-Key,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7182475/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com