I have a relation OneToMany between a class Resident and ResidentInfo ResidentInfo is not supposed to exists without Resident, but ResidentInfo is not required
Here are my classes:
public class Resident {
...
@OneToMany(cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REFRESH}, mappedBy = "resident")
@Cascade({org.hibernate.annotations.CascadeType.ALL})
public List<ResidentInfo> infos;
}
public class ResidentInfo {
...
@ManyToOne(optional = false)
public Resident resident;
public String label;
public String value;
}
I'm new to JPA and maybe I'm doing things wrong.
The issue is that when I try to insert datas all at once (create resident and its infos at the same time) I've got a null exception.
This is because ResidentInfo.resident.id is null (but I can't specify a value because Resident is created in the same time !)
Also even if the resident is created first, I have this error but I don't know why :
detached entity passed to persist: models.ResidentInfo
So how to resolve theses issues ?