3

我需要处理批准记录并根据它们的状态使它们可用。我最初的想法是使用标志列来过滤记录,但严格隔离已批准/未批准记录的商业惯例阻止了这种方法。下一个最合乎逻辑的方法(对我来说)是将记录移动到批准的表中。

我正在使用实体名称属性将同一个类映射到两个不同的表 - APPROVED_ 和 UNAPPROVED_。当我尝试移动记录时,它会从未批准的记录中删除,但不会插入已批准的记录。我打开了 hibernate.show_sql 并显示了检索/删除但没有插入。

已批准的表具有生成器 class="assigned",因此它使用未批准表中的 id 作为其键。

关于我做得不对的任何建议?或者更好的方法来做到这一点?

这是代码

    try {
        // begin transaction
        ses = Activator.getSession();
        ses.beginTransaction();
        dao.setSession(ses);
        daoMotor.setSession(ses);

        // for each input record in selectedMotors
        for (Long curId : selectedMotors) {
            // retrieve the input record
            IThreePhaseMotorInput record = dao.findById(curId, false);

            // save the motor into the permanent table using entity-name
            IThreePhaseMotor curMotor = record.getMotor();
            daoMotor.makePersistent("ThreePhaseMotor", (ThreePhaseMotor) curMotor);

            // delete the input record
            dao.makeTransient((ThreePhaseMotorInput) record);
        }

        // commit transaction
        ses.getTransaction().commit();
    } catch (Throwable t) {
        ErrorInfo info = ErrorInfoFactory.getUnknownDatabaseInfo(t, null, IThreePhaseMotorList.class.getName());
        Platform.getLog(Activator.getContext().getBundle()).log(
                new Status(IStatus.ERROR, Activator.PLUGIN_ID, info.getErrorDescription(), t));
        throw new BusinessException(info);
    } finally {
        if (ses != null && ses.isOpen()) {
            ses.close();
        }
    }

以及缩写的 hbm.xml 文件:

<class name="ThreePhaseMotorInput" table="THREE_PHASE_MOTOR_INPUT" lazy="false">
    <id name="id" type="java.lang.Long">
        <column name="ID" />
        <generator class="native" />
    </id>
    <version generated="never" name="version" type="java.lang.Integer" />
    <many-to-one name="motor" cascade="all" entity-name="UnapprovedThreePhaseMotor"  fetch="join">
        <column name="MOTOR" />
    </many-to-one>
</class>
<class name="ThreePhaseMotor" table="UNAPPROVED_THREE_PHASE_MOTOR" entity-name="UnapprovedThreePhaseMotor">
    <id name="id" type="java.lang.Long">
        <column name="ID" />
        <generator class="native" />
    </id>
    <version generated="never" name="version" type="java.lang.Integer" />
</class>
<class name="ThreePhaseMotor" table="THREE_PHASE_MOTOR"  entity-name="ApprovedThreePhaseMotor">
    <id name="id" type="java.lang.Long">
        <column name="ID" />
        <generator class="assigned" />
    </id>
    <version generated="never" name="version" type="java.lang.Integer" />

4

1 回答 1

1

在上面睡觉之后(我的电报说我在睡觉时做了一些最好的思考!),我意识到这个问题正如 gkamai 所建议的那样。我需要做一个深拷贝。

改变

IThreePhaseMotor curMotor = record.getMotor();
daoMotor.makePersistent("ThreePhaseMotor", (ThreePhaseMotor) curMotor);

IThreePhaseMotor curMotor = new ThreePhaseMotor(record.getMotor());
daoMotor.makePersistent("ThreePhaseMotor", (ThreePhaseMotor) curMotor);
于 2013-05-23T21:43:33.973 回答