Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing childs from @OneToMany-association: CascadeType.ALL + orphanRemoval = true not working

I'm having a hard time removing childs from a OneToMany-association. My entities:

@Entity
@Table(name = "PERSON")
public class PersonEntity extends BaseVersionEntity<Long> implements Comparable<PersonEntity>
{
  ...
  // bi-directional many-to-one association to Project
  @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = "person", orphanRemoval = true)
  private final Set<ProjectEntity> projects = new HashSet<ProjectEntity>();
  ...

@Entity
@Table(name = "PROJECT")
public class ProjectEntity extends BaseVersionEntity<ProjectPK>
{
  @EmbeddedId
  private ProjectPK id;
  ...
  // bi-directional many-to-one association to UdbPerson
  @ManyToOne(fetch = FetchType.LAZY)
  @JoinColumn(name = "PERSON_ID", nullable = false, insertable = false, updatable = false)
  private PersonEntity person;
  ...

@Embeddable
public class ProjectPK implements Serializable
{
  // default serial version id, required for serializable classes.
  private static final long serialVersionUID = 1L;

  @NotNull
  @Column(name = "PERSON_ID")
  private Long personId;
  ...

My unsuccessful attempt to delete the childs:

personEntity.getProjects().clear();

This works, but I don't think thats the right approach:

for (Iterator<ProjectEntity> iterator = personEntity.getProjects().iterator(); iterator.hasNext();)
{
  ProjectEntity projectEntity = iterator.next();
  projectDao.deleteEntity(projectEntity);
  iterator.remove();
}

What am I doing wrong here?

Thanks
Jonny

like image 427
user871611 Avatar asked May 03 '12 07:05

user871611


1 Answers

The association is bidirectional, and the owning side of a bidirectional association is the one where there is no mappedBy attribute. This means that in this case, the owning side is the project side.

Hibernate only considers the owning side to know if the association exists or not. This means that to break the association between a person and a project, you must set the person to null in the project.

like image 159
JB Nizet Avatar answered Oct 23 '22 15:10

JB Nizet