0

我正在使用 HIbernate 3.2.5。我在 Dept 和 Training 表之间有一个一对多的关联。一个部门能够接受不止一种培训。

<id name="deptId" type="integer" column="DEPT_ID">
      <generator class="assigned"></generator>
  </id>
  <property name="deptName">
      <column name="DEPT_NAME"></column>
  </property>
  <map name="trainingDetails" inverse="false" cascade="delete" lazy="false">
      <key column="DEPT_ID"></key>
      <map-key formula="ID" type="integer"></map-key>
      <one-to-many class="model.Training"/>
  </map>      

当我尝试删除条目时:

SessionFactory sf = new Configuration().configure("trial.cfg.xml").buildSessionFactory();
    Session session = sf.openSession();
    Dept department = new Dept();
    department.setDeptId(2);        
    session.delete(department);
    session.flush();
    session.close();

我可以看到,对于子表,更新查询正在控制台中打印,而不是删除查询:

update training set DEPT_ID=null where DEPT_ID=?

但是由于级联delete因此子表也应该执行delete操作而不是update正确的?

请让我知道我的错误在哪里。

问候,

4

1 回答 1

1

DELETE_ORPHAN如果您使用 cascade声明子对象不能独立存在,它会这样做。

此外,您在删除之前没有加载对象图。执行删除如下:

SessionFactory sf = new Configuration().configure("trial.cfg.xml")
                                       .buildSessionFactory();
    Session session = sf.openSession();
    //load the object before deleting
    Dept department = session.get(Dept.class, new Integer(2));
    session.delete(department);
    session.flush();
    session.close();
于 2012-11-10T16:34:13.700 回答