@Entity(name = "tpc_supert")
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public static class TablePerClassSuperType {
@Id
@GeneratedValue
private Long id;
}
@Entity(name = "tpc_subt")
public static class TablePerClassSubType extends TablePerClassSuperType {
}