我对休眠非常陌生。我已经用谷歌搜索了两个小时,但我仍然不知道如何在不使用 HQL 的情况下进行 JOIN,仅按标准。我有表 Clients(cID, name) 和 Visits(vID, vcID, date)。关系是一对多的(一个客户可以多次访问)。我也想在没有 setFetchMode 的情况下这样做。只是标准。我必须更改映射xml吗?
更新:这是我的映射 xml 的一部分:
<class name="Client" table="Clients">
<id name="cID" column="cID"><generator class="native"/></id>
<property name="name" length="10" not-null="true"/>
</class>
<class name="Visit" table="Visits">
<id name="vID" column="vID"><generator class="native"/></id>
<property name="vcID" length="10" not-null="true"/>
<property name="date" length="25" not-null="true"/>
</class>