@MappedSuperclass
public static abstract class TableTopGame {
@Embedded
private Component firstPlayerToken;
...
}
@Embeddable
public static class Component {
@Column(name = "first_player_token")
private String component;
...
}
@Entity(name = "CardGame")
public static class CardGame extends TableTopGame {
@Id
private String id;
private String name;
...
}