MyBatis支持一对多关系的映射配置可以通过使用resultMap元素来实现。下面是一个示例配置:
首先,需要在mapper.xml文件中定义一个resultMap元素,用于映射一对多关系。在resultMap元素中,可以使用collection元素来定义关联的多个对象。
<resultMap id="orderItemResultMap" type="Order">
<id property="id" column="order_id"/>
<result property="total" column="order_total"/>
<result property="items" column="order_id" javaType="java.util.List" ofType="OrderItem"
select="selectOrderItemsByOrderId"/>
</resultMap>
<resultMap id="orderItemResultMap" type="OrderItem">
<id property="id" column="item_id"/>
<result property="name" column="item_name"/>
<result property="price" column="item_price"/>
</resultMap>
在上面的示例中,我们定义了两个resultMap元素,分别用于映射Order和OrderItem对象。
然后,需要在mapper.xml文件中定义一个select元素,用于查询订单及其对应的订单项。
<select id="selectOrderItemsByOrderId" resultMap="orderItemResultMap">
SELECT *
FROM order_items
WHERE order_id = #{orderId}
</select>
在上面的示例中,我们通过select元素定义了一个查询,通过orderId参数查询订单项。
最后,需要在mapper接口中定义一个方法,用于执行查询操作。
public interface OrderMapper {
Order selectOrderById(int id);
}
在上面的示例中,我们定义了一个selectOrderById方法,用于查询订单及其对应的订单项。
通过上述配置和代码,就可以实现MyBatis的一对多映射配置。在查询订单时,MyBatis会自动查询订单项,并将其关联到订单对象中的items属性中。