Beginner |
|
Joined: Thu Jan 22, 2004 2:42 pm Posts: 24
|
I am trying to set up a simple one-to-many relationship with hibernate and it errors out "ERROR impl.DatastoreImpl - Could not configure datastore from input stream"
I have narrowed it down to this section of the hbm.xml:
<set name="hcpcscodes" lazy="true">
<key column="HCPCS_BASE_ID"></key>
<one-to-many class="com.graysail.pgbadmecs.domain.HcpcsBaseDescription">
</one-to-many>
</set>
This mirrors the examples in the documentation with one key difference, mine doesn't work. Has anyone encountered this/fixed it before? I'm currently using hibernate 2.06.
|
|