So currently I have three tables created by the Hibernate mapping on my objects, and these tables overlap heavily in content.
public class Group{...
@ElementCollection
@CollectionTable(name="USER_DATE")
@MapKeyJoinColumn(name="USER_ID")
@Column(name="BIRTHDAY")
@Temporal(TemporalType.TIMESTAMP)
public Map<User, Date> getUserBirthday() { return userBirthdays; }
public void setUserBirthdays(Map<User, Date> m) { this.userBirthdays = m; }
@OneToMany
@JoinTable(name = "GROUP_USERS",
joinColumns = @JoinColumn(name = "GROUP_ID"),
inverseJoinColumns = @JoinColumn(name = "USER_ID")
)
public Set<User> getGroupUsers() { return groupUsers; }
public void setGroupUsers(Set<User> s) { this.groupUsers = s; }
@MapKeyJoinColumn(name = "USER_ID")
@OneToMany(cascade = CascadeType.ALL)
public Map<User, Office> getUserOffices() { return userOffices; }
public void setUserOffices(Map<User, Office> m) { this.userOffices = m; }
what I think I need is a single table
- GROUP_ID
- USER_ID
- BIRTHDAY
- office_id(currently, this is implicit in useroffices)
and for all these fields to be populated from the same join table. JPA allows @AttributeOverride(name="key.??", column = @column()) but I don't want the key to reference an existing column for both userOffices and userBirthdays.
I need birthdays and offices each to contribute one field, a temporal date and an entity foreign key, while themselves adopting the groupusers as the foundation for their table.
Is this possible in JPA or Hibernate?