JPA Cannot delete or update a parent row: a foreign key constraint fails

Spring-Data-JPA项目
执行数据操作时遇到了一个这样的错误:

com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: 
Cannot delete or update a parent row: a foreign key constraint fails 
(`wm-system`.`wm_user`, CONSTRAINT `FKhg8hi330bcjiyg954xm71fqqv` 
FOREIGN KEY (`role_id`) REFERENCES `wm_role` (`id`))

执行wm_role的删除操作时报错,查看错误原因,在wm_user表中存在与wm_role的外键关系!。
JPA Cannot delete or update a parent row: a foreign key constraint fails_第1张图片
这种情况要先处理外键关系。
JPA Cannot delete or update a parent row: a foreign key constraint fails_第2张图片
这里我是把对应的User对象查出来,然后把Role设置为null。重新保存一遍。
我这里还有个业务逻辑是删除了另一个wm_role关联表wm_role_right的数据。上图的roleRepository.deleteRoleRight(id);方法。
解决掉Role的外键关联关系后就可以顺利删除wm_role的数据了。


顺带提一下JPA的删除和更新操作:
这里的roleRepository是DAO接口。
RoleRepository代码如下:

package net.cdsunrise.wm.system.repository;

import net.cdsunrise.wm.system.entity.Role;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.transaction.annotation.Transactional;

/**
 * Author : WangRui
 * Date : 2018/4/25
 * Describe :
 */
public interface RoleRepository extends JpaRepository<Role,Long> {

    @Modifying
    @Transactional
    @Query(value = "delete from wm_role_right where role_id = :roleId",nativeQuery = true)
    int deleteRoleRight(@Param("roleId")Long roleId);
}

有个自定义的接口和sql语句。可以选择使用JPql语句或者原生sql语句。nativeQuery = true/false自定义的删除和更新操作必须加上 @Transactional事物注解和@Modifying注解。而且事物注解必须加在DAO接口上,我测试的时候加在service接口上试了试不行,会报错。如下
JPA Cannot delete or update a parent row: a foreign key constraint fails_第3张图片


  • 我的公众号:Coding抠腚
  • 一个没有福报的社畜程序员。吐槽程序员生存,生活,职业发展。Java学习路线,经验,技术分享。技术问题交流探讨。超喜欢这里的,这里的老哥写代码都好sao的。
    Coding抠腚

你可能感兴趣的:(SpringDataJPA)