Hibernate的List映射

Answer类为Question类一对多关联关系,即一个问题对应多个答案。他们的表结构如下

如果希望Answer集合在Question类中作为List存储,我们可以使用hibernate的list或者bag标签来进行映射。

当使用list标签映射时,Question.hbm.xml中的配置如下:

<hibernate-mapping>
    <class name="mypackage.Question" table="question">
        <id name="id" type="integer">
            <column name="id" />
            <generator class="identity" />
        </id>
        <property name="userId" type="integer">
            <column name="user_id" />
        </property>
        <property name="content" type="string">
            <column name="content" length="200" />
        </property>
        <property name="time" type="timestamp">
            <column name="time" length="19" />
        </property>
        <list name="answers" inverse="true" cascade="all" lazy="false">
            <key column="question_id" not-null="true"/>
            <index column="position" />
            <one-to-many class="com.skyseminar.meeting.db.TMeetingAnswer"/>
        </list>
    </class>
</hibernate-mapping>
list标签中,key元素表示Answer表通过外键question_id参照Question表。

因List集合是个有序的集合,所以要使用<indexcolumn="position"/>来标明其顺序。(position为Answer表中附加字段)

因此在插入更新时便需要维护position字段,否则索引设置错误,取出的数据就会出现空值情况。

而是用bag标签映射list集合,则无需维护多余的字段。因此使用Hibernate进行一对多映射时,选择使用bag标签更佳。值得注意的是bag集合对象为无序排列,如果需要排序,可以使用order-by标签。

bag标签使用格式如下:

<bag name="answers" order-by="id asc" lazy="false">
    <key column="question_id" />
    <one-to-many class="mypackage.Answer"/>
</bag>

相关推荐