Reputation: 306
I have same question which was answered in hibernate 3 here. However, I can't apply this to hibernate 4 as there is no @CollectionOfElements annotation. Can someone provide the solution that can be executed using hibernate 4?
EDIT: changed @CollectionOfElements to @ElementCollection worked for me. What should I do with @JoinTable now, because there is no table field in there.
Upvotes: 0
Views: 201
Reputation: 691835
Hibernate 4 only supports the standard JPA annotation, which is @ElementCollection.
Note that even Hibernate 3 recommends using this standard annotation:
Deprecated. use @ElementCollection
Upvotes: 1