Refer to the URL http://docs.jboss.org/hibernate/core/3.5/reference/en/html_single/, section 1.2.4

It defines a set in the hibernate configuration.

<set name="emailAddresses" table="PERSON_EMAIL_ADDR">
   <key column="PERSON_ID"/>
   <element type="string" column="EMAIL_ADDR"/>
</set>

How can this be converted to JPA annotations?

I am not getting it right, something like this?

@OneToMany
@JoinTable(
     name="PERSON_EMAIL_ADDR"
    , joinColumns={
        @JoinColumn(name="person_id")
    })
private Set<String> emailAdresses;
link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

For a Set<String> you need @ElementCollection instead of @OneToMany (which maps entities rather than values)

link|improve this answer
1  
+1. See docs.jboss.org/hibernate/core/3.6/reference/en-US/html_single/… for an example – JB Nizet Dec 18 '11 at 19:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.