我在Hibernate中映射List时似乎遇到了问题。在我们的项目中有一个类Profile
,它包含一个List<String>
。
Hibernate是否可以使用注释,使用Java Persistence 1.0映射List<String>
(无ElementCollection
!)?(注释如@Entity
)
我知道Java Persistence 2.0由ElementCollection
组成,但在我们的项目中,我们只有JavaPersistence 1.0.
JPA1中没有类似的东西。您必须回退到Hibernate特定的注释,并使用CollectionOfElements:
@org.hibernate.annotations.CollectionOfElements
List<String> myElements;