Hibernateで読み取り専用列を強制する方法がわかりません。
idgroupを読み取り専用列に設定したいと思います。設定insertable=false
しupdatable=false
て、休止状態のSQLで、次のように読み取ることができます。
Hibernate: insert into groups (description, name, account_idaccount, idgroup) values (?, ?, ?, ?)
しかし、私は取得したいと思います:
insert into groups (description, name, account_idaccount) values (?, ?, ?)
これが私のクラスです:
@Entity
@Table(name = "groups")
public class Group implements java.io.Serializable {
private static final long serialVersionUID = -2948610975819234753L;
private GroupId id;
private Account account;
private String name;
private String description;
@EmbeddedId
@AttributeOverrides({@AttributeOverride(name = "idgroup", column = @Column(name = "idgroup", insertable = false)),
@AttributeOverride(name = "accountIdaccount", column = @Column(name = "account_idaccount", nullable = false))})
public GroupId getId() {
return id;
}
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "account_idaccount", nullable = false, insertable = false, updatable = false)
public Account getAccount() {
return account;
}
@Column(name = "description", length = 512)
public String getDescription() {
return description;
}
@Column(name = "name", nullable = false, length = 128)
public String getName() {
return name;
}
..
}
@Embeddable
public class GroupId implements java.io.Serializable {
private int idgroup;
private int accountIdaccount;
@Column(name = "idgroup", insertable= false, updatable= false)
public int getIdgroup() {
return this.idgroup;
}
@Column(name = "account_idaccount", nullable = false)
public int getAccountIdaccount() {
return this.accountIdaccount;
}
..
}
DBMSのid自動生成を利用できるため、idgroupの読み取り専用列が必要です。クラスターセーフではないため、Hibernateでキー自動生成を使用したくありません。