Hi I have models like this :
public class Person extends Model {
...
@OneToMany(orphanRemoval = true, mappedBy = "person")
@Cascade({ CascadeType.ALL })
public List<Contact> infos = new ArrayList<Contact>();
}
public class Contact extends Model {
...
@ManyToOne(optional = false)
public Person person;
}
And I have a method in my controller like this :
public static void savePerson(Person person) {
person.save();
renderJSON(person);
}
My issue is that when I try to save a person with savePerson() I have this error (only if my list of Person isn't empty) :
PersistenceException occured : org.hibernate.HibernateException: A collection with cascade="all-delete-orphan" was no longer referenced by the owning entity instance: models.Person.infos
I don't understand the error message because it appears if the list was previously empty or not.