The hbm.xml file showed the following:
<id column="user_id" type="java.lang.Long">
<generator class="foreign">
<param name="property">user</param>
</generator>
</id>
I added the name attribute in the id element, and that resolved the issue:
<id name="id" column="user_id" type="java.lang.Long">
<generator class="foreign">
<param name="property">user</param>
</generator>
</id>
Thank you.. that resolved the issue.
ReplyDelete