zoukankan      html  css  js  c++  java
  • org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; constraint [null]; nested exception is org.hibernate.

    今天报了这个异常,这是页面报的

    org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; constraint [null]; nested exception is org.hibernate.

    控制台报 

    18:52:35,859 ERROR SqlExceptionHelper:147 - Cannot delete or update a parent row: a foreign key constraint fails (`zl_cms`.`t_channel`, CONSTRAINT `FK_8xberajm2i2c97rwrellh0eqk` FOREIGN KEY (`pid`) REFERENCES `t_channel` (`id`)

    channel对象自关联

    <hibernate-mapping package="com.zl.cms.model">
    <class name="Channel" table="t_channel">
    <id name="id">
    <generator class="identity"/>
    </id>
    <property name="name" type="string"/>
    <property name="customLink" type="int" column="custom_link"/>
    <property name="customLinkUrl" type="string" column="custom_link_url"/>
    <property name="index" type="int" column="is_index"/>
    <property name="topNav" type="int" column="is_top"/>
    <property name="status" type="int"/>
    <property name="recommed" type="int"/>
    <property name="orders" type="int"/>
    <many-to-one name="parent" column="pid" cascade="all" class="Channel"/>
    <property name="type">
    <type name="org.hibernate.type.EnumType">
    <param name="enumClass">com.zl.cms.model.ChannelType</param>
    <param name="type">4</param>
    </type>
    </property>
    </class>
    </hibernate-mapping>

    原因是 hibernate级联删除问题。

       <many-to-one name="parent" column="pid" cascade="all" class="Channel"/> 这里设置了all ,应该设置成none不进行级联操作

    ,这个和数据库还是有区别

     数据库外键检查。一般情况是,当你删除父键时,不让删除,因为有子键引用这个父建id,但是hibernate的级联不一样。删除子键也不行 ,所以取消级联

  • 相关阅读:
    WCF发布后的地址中域名与IP地址的问题
    asp.net判断字符串是否包含特殊字符
    silverlight中DataGrid错误:data未定义
    变电所、分区所、AT所
    Angela Aki 给十五岁的自己
    WCF绑定(Binding)
    几个不错的WCF系列课程
    WCF服务编程学习笔记之服务契约
    asp.net跳转页面的三种方法比较
    Hashtable快速查找的方法
  • 原文地址:https://www.cnblogs.com/or2-/p/3539823.html
Copyright © 2011-2022 走看看