私の Java アプリケーションでは、hibernate .hbm ファイルを使用してデータベースにアクセスしています。テーブルの主キー「id」列を更新することは可能ですか。私の .hbm ファイルの「id」列は次のようになります。
<hibernate-mapping package="org.jems.user.model">
<class name="Student_Details" table="t_student">
<id name="id" type="int" column="id">
<generator class="increment"/>
</id>
<property name="name" column="name" type="string" unique="true" not-null="true" />
<property name="description" column="description" type="string" />
<property name="comments" column="comments" type="string" />
<property name="active" column="isActive" type="boolean" not-null="true" />
</class>
</hibernate-mapping>