HibernateException:foo实例的标识符从X更改为Y.

时间:2016-05-30 13:11:36

标签: java oracle hibernate exception persistence

我遇到了实体管理器merge()方法的问题。

有两个实体' FOO'和' BAR'他们自己的架构没有任何关系,必须保持这种状态,遗憾的是我无法改变它。 FOO中有一个名为PROCESS_CD的列与BAR中的CLASS_CD完全相同。 CLASS_CD是BAR的主键,但FOO中的PROCESS_CD不是外键。

我想将PROCESS_CD中的FOO值从X更新为Y,但hibernate也会尝试更改BAR中的值,从而发生错误。

我不知道如何指定它只应在FOO中更新,而不是在BAR中更新

所以这是我的数据库架构

Database Schema

我的上课

@javax.persistence.Entity
@Table(name = "FOO")
public class FooImpl implements Foo {

    private Long callCode;
    private Journal journal;

    @Id
    @Column(name = "CALL_CD")
    public Long getCallCode() {
        return callCode;
    }

    public void setCallCode(Long aLong) {
        callCode = aLong;
    }


    @ManyToOne(fetch = FetchType.LAZY, targetEntity = BarImpl.class)
    @JoinColumn(name = "PROCESS_TYPE")
    public Journal getJournal() {
        return journal;
    }
}

我的酒吧课

@javax.persistence.Entity
@Table(name = "BAR")
public class BarImpl implements Bar {

    private String Code;
    private String Description;

    public List<Interaction> interaction;

    @Id
    @Column(name = "CLASS_CD")
    public String getCode() {
        return Code;
    }

    public void setCode(String code) {
        Code = code;
    }

    @Column(name = "CLASS_LONG_DESCR")
    public String getDescription() {
        return Description;
    }

    public void setDescription(String description) {
        Description = description;
    }
}

这是我的fooDao课程

public class FooDao {

    public void saveFoo(Foo instance) {
        log.debug("update instance");
        try {
            if (getEntityManager().contains(instance)) {
                getEntityManager().merge(instance);
            } else {
                getEntityManager().persist(instance);
            }
            log.debug("update successful");
            return instance;
        } catch (RuntimeException re) {
            log.error("update failed", re);
            throw re;
        }
    }

    public void startTransaction() throws TransactionException{
        EntityTransaction t =  getEntityManager().getTransaction();
        t.begin();
        TransactionManager.setTransaction(t);
    }
    public void commitTransaction()throws TransactionException {
        EntityTransaction t = TransactionManager.retrieveTransaction();
        if(t == null)
            throw new TransactionException("No transaction associated witht his thread");
        t.commit();
    }
    public void rollbackTransaction() throws TransactionException{
        EntityTransaction t = TransactionManager.retrieveTransaction();
        if(t == null)
            throw new TransactionException("No transaction associated witht his thread");
        t.rollback();
    }
}

然后最后我调用保存的方法

这是我得到的错误

Caused by: org.hibernate.HibernateException: identifier of an instance of BarImpl was altered from X to Y

我希望你可以提供帮助,因为我无法在国际上找到任何东西

感谢您的时间

1 个答案:

答案 0 :(得分:0)

首先感谢所有回答我问题的人,你们都非常有用。 :d

我发现了我的问题,它依赖于我的实际实现。而不是我创建一个新的barImpl,我去搜索一个,如果它是null,它需要创建一个新的条,但如果它找到一个它只是继续并输入新的值。

请参阅我不知道实体类与数据库中的实际记录保持关系。因此,当我更改DAO找到的实体的值时,当我尝试保存foo实体时,它实际上是在尝试更改数据库中的值。

度过愉快的一天