I have a one-to-many relation between Parent and Child table. In the parent object I have a
List setChildren(List childs)
in your setChilds, you might want to try looping thru the list and doing something like
child.parent = this;
you also should set up the cascade on the parent to the appropriate values.