これを .hbm ファイルに設定しています。
<set name="subTopicsTb" table="subtopics_tb" inverse="true" lazy="false" fetch="select">
<key>
<column name="topic_id" />
</key>
<one-to-many class="com.topics.model.SubTopics" />
</set>
現在、デフォルトでは、hibernate は topic_id が ID であるすべてのサブトピックを取得します。サブトピックをフィルタリングしたい。where subTopics.date is not null のようなものを追加します