У меня есть следующий дизайн для моего спящего проекта:
@MappedSuperclass
public abstract class User {
private List<Profil> profile;
@ManyToMany (targetEntity=Profil.class)
public List<Profil> getProfile(){
return profile;
}
public void setProfile(List<Profil> profile) {
this.profile = profile;
}
}
@Entity
@Table(name="client")
public class Client extends User {
private Date birthdate;
@Column(name="birthdate")
@Temporal(TemporalType.TIMESTAMP)
public Date getBirthdate() {
return birthdate;
}
public void setBirthdate(Date birthdate) {
this.birthdate= birthdate;
}
}
@Entity
@Table(name="employee")
public class Employee extends User {
private Date startdate;
@Column(name="startdate")
@Temporal(TemporalType.TIMESTAMP)
public Date getStartdate() {
return startdate;
}
public void setStartdate(Date startdate) {
this.startdate= startdate;
}
}
Как вы можете видеть, у пользователя есть отношение ManyToMany к профилю.
@Entity
@Table(name="profil")
public class Profil extends GObject {
private List<User> user;
@ManyToMany(mappedBy = "profile", targetEntity = User.class )
public List<User> getUser(){
return user;
}
public void setUser(List<User> user){
this.user = user;
}
}
Если я сейчас попробуючтобы создать сотрудника, я получаю исключение гибернации:
org.hibernate.AnnotationException: использование @OneToMany или @ManyToMany для таргетинга на неподключенный класс: de.ke.objects.bo.profile.Profil.user [de.ke.objects.bo.user.User]
Как я могу использовать ManyToMany-Relationship to Profile для суперкласса User
, поэтому он работает для Client
и Employee
* * 1016