当前位置: 首页 > 知识库问答 >
问题:

组织。冬眠HibernateeException:找到了多个具有给定标识符的行

管弘
2023-03-14

组织。冬眠HibernateeException:找到了多个具有给定标识符的行:578,用于类:com。冬眠查询表演坚持不懈模型百货商店

数据库没有标识符为578的重复存储行。使用SQL对其进行了检查:

SELECT * 
FROM store
WHERE store.store_id = 578;

它返回0条记录。

关于一、二的其他问题指出,问题可能与OneToOne映射本身有关。商店和员工实体具有OneToOne关系,我的映射如下:

工作人员:

@OneToOne(mappedBy = "manager_staff", cascade = CascadeType.ALL, orphanRemoval = true)
    public Store getStore() {
        return store;
    }

商店:

@OneToOne
    @JoinColumn(name = "manager_staff_id", referencedColumnName = "staff_id", nullable = false)
    public Staff getManager_staff() {
        return manager_staff;
    }

如何修复它?

更新:

当查询被修改为:

Query query = session.createQuery("select c " +
                        " from Rental r, Customer c join fetch c.address address join fetch address.store store join fetch address.city city " +
                        " where r.customer = c " +
                        " and r.returnDate is null");

例外情况:

org.hibernate.HibernateException: More than one row with the given identifier was found: 2951, for class: com.hibernate.query.performance.persistence.model.Store

对数据库没有任何修改。我不确定HQL是否正确,因为JProfiler无法捕获任何JPA/Hibernate记录。唯一被捕获的指标是运行的JDBC连接。

共有1个答案

海灵均
2023-03-14

您的数据有错误,OneToOne意味着您必须拥有该链接,因此请确保查询返回一条记录。如果需要可选,则必须将其设置为“OneToMany”

 类似资料: