繁体   English   中英

org.springframework.dao.DataIntegrityViolationException 使用 hibernate 和 spring-boot-data-jpa 将 spring-boot 从 2.1.x 更新到 2.2.x 后

[英]org.springframework.dao.DataIntegrityViolationException after update spring-boot from 2.1.x to 2.2.x using hibernate and spring-boot-data-jpa

尝试将 spring-boot 从版本 2.1.12 更新到 2.2.4 时,在尝试使用 JPA 将多个对象插入 MySQL 时卡在 DataIntegrityViolationException 上。

示例对象:

@Data
@Entity
@AllArgsConstructor
@NoArgsConstructor
@Builder(toBuilder = true)
@Table(name = "user")public class User {

    @Id
    @Column(name = "id")
    @JsonProperty("id")
    private String id;

    @PrimaryKeyJoinColumn
    @OneToOne(cascade = CascadeType.ALL)
    @JsonProperty("status")
    private UserStatus status;

}

和用户状态:

@Data
@Entity
@AllArgsConstructor
@NoArgsConstructor
@Table(name = "user_status")
public class UserStatus {

    @Id
    @Column(name = "id")
    @JsonProperty("id")
    private String id;

    public UserStatus(String userId) {
        this.id = userId;
    }

}

要将对象插入 mysql,我使用默认的 jpa 存储库:

@Repository
public interface UserRepository extends JpaRepository<User, String> { 
}

使用 spring-boot-2.1.x userRepository.save(user)工作正常,但使用 2.2.x 会引发此异常:

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

在日志中包含此详细信息:

Cannot add or update a child row: a foreign key constraint fails (`test`.`user_status`, CONSTRAINT `user_status_ibfk_1` FOREIGN KEY (`id`) REFERENCES `user` (`id`) ON DELETE CASCADE)

如果启用spring.jpa.show-SQL: true我发现使用 spring-boot-2.2.x 没有插入User实体,但使用旧的 spring。

我没有发现 spring-boot 连接到 hibernate 有任何重大变化,相应更新后 hibernate 本身也没有重大变化。 是否有发行说明中未描述的更新内容?

spring-boot 2.1.12 使用 Hibernate 5.3.15.Final 和 spring-boot 2.2.4 使用 Hibernate 5.4.10.Final

您的问题似乎类似于 Hibernate 问题HHH-13413 HHH-13171

原因是在5.4.0.CR1中引入的修复HHH-12436 中,因此当 @OneToOne(mappedBy ="") 未提供时,一对一映射不起作用。

正如我从 JIRA 中的讨论中了解到的,它现在不是一个错误。 有一个错误,他们像这样修复了它。 我猜对@PrimaryKeyJoinColumn有一些误解,所以人们没有正确使用它。

我想这将解决问题

@OneToOne(mappedBy = "user", cascade = CascadeType.ALL)
@JsonProperty("status")
private UserStatus status;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM