Hibernate, updating an object containing a collection without loading the collection

471 Views Asked by At

I have a Project that contains a Set of Columns that contains a Set of Tasks that contains a Set of TaskAssigness.

I'm trying to update a column title without having to load its set of tasks, but I get the following error :

[AssertionFailure] - an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session)
    org.hibernate.AssertionFailure: collection [com.example.tasks.Task.taskAssignees] was not processed by flush() 

I have the following hbm.xml :

Project.hbm.xml :

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "classpath://org/hibernate/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
  <class name="com.exemple.tasks.project.Project" table="P_TASKS_PROJECT">
    <cache usage="read-write" />
    <id name="rowId" column="rowId">
      <generator class="native"/>
    </id>
    ...
    <set name="columns" table="P_TASK_PROJECT_COLUMN" inverse="true" cascade="all" sort="com.exemple.tasks.project.ColumnIndexComparator">
      <cache usage="read-write" />
      <key column="projectId" not-null="true" />
      <one-to-many class="com.exemple.tasks.project.Column" />
    </set>

  </class>
</hibernate-mapping>

Column.hbm.xml :

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "classpath://org/hibernate/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
  <class name="com.example.tasks.project.Column" table="P_TASK_PROJECT_COLUMN">
    <cache usage="read-write" />
    <id name="rowId" column="rowId">
      <generator class="native"/>
    </id>
    ...
    <property name="title" />
    <many-to-one name="project" class="com.example.tasks.project.Project">
      <column name="projectId" not-null="false" />
    </many-to-one>

    <set name="tasks" table="P_TASKS_JOIN_COLUMNS">
      <cache usage="read-write" />
      <key column="columnId" not-null="true" />
      <many-to-many column="taskId" class="com.example.tasks.Task" unique="false" />
    </set>
  </class>
</hibernate-mapping>

Task.hbm.xml :

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "classpath://org/hibernate/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
  <class name="com.example.tasks.Task" table="P_TASK">
    <cache usage="read-write" />
    <id name="rowId" column="rowId">
      <generator class="native"/>
    </id>
    ...
    <set name="taskAssignees" table="P_TASK_ASSIGNEE" cascade="all-delete-orphan">
      <cache usage="read-write" />
      <key column="taskId" not-null="true" />
      <one-to-many class="com.example.tasks.TaskAssignee" />
    </set>

  </class>
</hibernate-mapping>

TaskAsignee.hbm.xml :

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "classpath://org/hibernate/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
  <class name="com.example.tasks.TaskAssignee" table="P_TASK_ASSIGNEE">
    <cache usage="read-write" />
    <id name="rowId" column="rowId">
      <generator class="native"/>
    </id>
    ...
    <many-to-one name="task" class="com.example.tasks.Task" insert="false" update="false">
      <column name="taskId" not-null="true" />
    </many-to-one>

  </class>
</hibernate-mapping>

I'm trying to update the title of a column this way :

//Updating column title
Column column = project.getColumn(index); // return a column from the project. Project contains a SortedSet of Column
column.setTitle("NewTitle");
session.saveOrUpdate(project);

This works fine if the column does not contains any tasks. If I try to update a column containing tasks I get the following error message:

[AssertionFailure] - an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session)
org.hibernate.AssertionFailure: collection [com.example.tasks.Task.taskAssignees] was not processed by flush() 

If i get tasks and tasks assigness before updating the project, I have no errors :

Set<Task> tasks = col.getTasks();
  if (tasks != null) {
    for (Task task : tasks) {
      task.getTaskAssignees();
     }
   }
session.saveOrUpdate(project);

Is there a way to change my column title, then update the project without having to get tasks and task assignees ? Can I tell hibernate just to update the column and not try to go further.

0

There are 0 best solutions below