org.hibernate.exception.ConstraintViolationException: could not insert:

org.hibernate.exception.ConstraintViolationException: could not insert:

报错原因为xxx.hbm.xml文件中的主键类型设置有问题;

当我们的数据库表没有用自增长的int型id,而用的varchar就可能报上面的错误,

如果,主键的生成类型设置为identity或者native的时候底层数据库会自动生成一个long,short或者是int,如果ID设计的是用String,数据库就无法插入的,所以如果你的数据库的ID设计的是用String型的,最好是用assigned.

例如:

    <id name="userId" type="java.lang.String">

            <column name="UserId" length="32" />
            <generator class="assigned" />
        </id>

你可能感兴趣的:(org.hibernate.exception.ConstraintViolationException: could not insert:)