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>

上一篇:电子产品使用感受之-- AirPods + Apple Watch S4 = Smart iPod ?


下一篇:matlab + c/c++ opencv 混合编程