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;