Considérez la structure des classes d'entités suivantes :
Par quoi faut-il remplacer "XXXXX" pour obtenir une seule table "Employe" en hibernate ?
@Entity
@Table(name = "Employe")
@XXXXX
@DiscriminatorColumn(
name = "TypeE"
, discriminatorType = DiscriminatorType.STRING)
@DiscriminatorValue("Employe")
public class Employe implements Serializable {
// ...
}