それに似た注釈付きクラスを作成したい:
@Entity
@MappedSuperclass
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public class SeriesMonitoringPointsTable {
@Id
@Column(name = ID, nullable = false)
private Long id;
public void setId( Long id ) {
this.id = id;
}
}
このクラスでは、クラスター化インデックスとして Id 列を作成したいと考えています。注釈や休止状態でそのようなことは可能ですか?