标签: hibernate jpa jpa-2.0
如果我在JPA2 @Entity中有以下字段:
@Entity
List<Date> associatedDates;
如何让JPA2持久保存此字段?
@OneToMany似乎不起作用。
@OneToMany
JPA2的@ElementCollection是最佳选择吗?如果是,我是否需要使用带有@Entity注释的包装器?
@ElementCollection
this示例中的serviceHistory集合使用此方法,但ServiceVisit类封装了更多信息 - 我实际上只需要及时存储一组点。
serviceHistory
ServiceVisit
答案 0 :(得分:2)
Hibernate参考指南提供了有关mapping a collection of elements的所有信息,因为Date不是映射实体。