lwsiv wrote:
Okay, I am trying to create directly associated parent/children. In reading the documentation regarding this, I am left with some implementation questions.
1. does the implementation class of the child need a get/set pair for the parent id, or is that an automatic (under the hood) generation by hibernate?
It's done automatic under the hood. You have to define only Parent and Child members.
lwsiv wrote:
2. if the child needs a get/set pair... is the correct semantic setParent(Parent p) or setParentId(long id)?
setParent(Parent p).
Artur