在Hibernate中的映射文件配置中, 如果在数据库中设置一列为自动增长列,但又不是主键,则在配置时需要设置 property 节点的 "insert" 和“update” 属性为false. 即: <property column="ID" name="id" type="int" insert="false" update="false"/> 否则会出现 “ com.microsoft.sqlserver.jdbc.SQLServerException: Cannot insert explicit value for identity column in table 'Users' when IDENTITY_INSERT is set to OFF.” 这样的异常(Users为表名其中有一个ID的列为自动增长)
其生成的SQL语句为 “insert into Users (ID, Password, Sex, Age, Phone, UserName) values (?, ?, ?, ?, ?, ?)”。
将 "insert" 和“update” 属性改为“false” 后,其生成的SQL语句为:
“insert into Users (Password, Sex, Age, Phone, UserName) values (?, ?, ?, ?, ?)”。
ID列会按照数据库的设置去赋值。
其原理是在插入和更新的时候不会接收从客户端提交上去的数据。生成的SQL 语句中会自动将这一列去掉。同理,若想在数据库中给某列设置默认值,只需设置 <class name="lec.data.entity.User" table="Users" dynamic-insert="true" dynamic-update="true"> 即将“dynamic-insert”和“dynamic-update”设置为“true” 或者 设置 <property column="***" name="***" type="int" insert="false" update="false"/>