目标是关联网址。
使用以下sql,
CREATE TABLE `profiles` (
`id` serial ,
`url` varchar(256) ,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `linked_profiles` (
`profile` bigint unsigned references profiles(id),
`linked` bigint unsigned references profiles(id),
PRIMARY KEY (`profile`, `linked`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
这是hibernate映射。
<hibernate-mapping>
<class name="LinkedProfiles" table="linked_profiles">
<composite-id>
<key-property name="profile" column="profile" type="long" />
<key-property name="linked" column="linked" type="long" />
</composite-id>
<one-to-one name="profile" class="Profile" cascade="save-update">
</one-to-one>
<one-to-one name="linked" class="Profile" cascade="save-update">
</one-to-one>
</class>
<class name="Profile" table="profiles">
<id name="id" type="long">
<column name="id" not-null="true"/>
<generator class="identity"/>
</id>
<property name="url" type="java.lang.String">
<column name="url"/>
</property>
</class>
</hibernate-mapping>
目标: 每个唯一的网址都会在“个人资料”表格中有一个条目。 'linked_profiles'涉及两个网址。
这导致了这个例外。
org.hibernate.MappingException:中断的列映射:profile.id:LinkedProfiles
这是Hibernate的缺陷吗? 见https://hibernate.atlassian.net/browse/HHH-1771
答案 0 :(得分:0)
复合键表示如果任何组件键发生更改,则会生成另一个唯一键。现在考虑一下:
profiles:
id |url |
----|--------|
1 |someUrl |
2 |someUrl2|
3 |someUrl3|
linked_profiles:
profile |linked |
---------|----------|
1 |3 |->still a valid composite key
1 |2 |->still a valid composite key
这些是hibernate允许你添加的一些例子。因此,one-to-one
对Hibernate没有意义,导致Excepetion:org.hibernate.MappingException: broken column mapping
。
因此,如果您将one-to-one
更改为many-to-one
,则可以使用。