Hibernate嵌入式列表

时间:2014-09-16 10:01:16

标签: java hibernate embeddable

我有两张现成的桌子:

Table "One"
id numeric (PK);
name varchar(100); 

Table "Two"
property1 varchar(100);
one_id long;

我想为它表映射两个类:

class One 
{
long id;
String name;
}

Two
{
  One parent;
  String property1;
}

如果我将List<Two> properties添加到One类中,我必须添加哪些注释?班级&#39;两个&#39;标记为可嵌入。不推荐使用表的修改。

1 个答案:

答案 0 :(得分:1)

你根本不需要第二课。你在课堂上需要的是

@ElementCollection
@Column(name = "property1")
@JoinColumn(name = "one_id")
private Set<String> properties;