Looking back through the docs again 8.3 and 8.5 dont seem to be related to this problem. They are 8.3. Components as Map indices and 8.5. Dynamic components. However based on your textual description 7.3. Unidirectional associations with join tables seems to be what I want. I implimented scholarship like
<set name="campuses" table="scholarshipXcampus" inverse="false" cascade="all" lazy="false">
<meta attribute="field-description">
A scholarship can have many campuses associated with it
</meta>
<key column="scholarshipID" />
<many-to-many class="edu.asu.SFAO.DAOs.Campus" column="campusID" unique="true"/>
</set>
with no changes to the campus. Im getting the same error I get every time I try to move to an association mapping. When I do a query that should return a result I get something mangled. I have been throwing the result into a list and using it as a jsp as a bean but I always get javax.servlet.ServletException: No getter method for property: "id" of bean: "scholarship". Please check my other thread:
http://forum.hibernate.org/viewtopic.ph ... highlight=