在MyBatis中,一对多映射可以通过以下几种方式实现:
<!-- 父实体对象 -->
<resultMap id="parentResultMap" type="Parent">
<id property="id" column="id" />
<result property="name" column="name" />
<!-- 子实体对象集合 -->
<collection property="children" ofType="Child">
<id property="id" column="child_id" />
<result property="name" column="child_name" />
</collection>
</resultMap>
<!-- 查询语句 -->
<select id="getParents" resultMap="parentResultMap">
SELECT p.id, p.name, c.id AS child_id, c.name AS child_name
FROM parent_table p
LEFT JOIN child_table c ON p.id = c.parent_id
</select>
<!-- 父实体对象 -->
<resultMap id="parentResultMap" type="Parent">
<id property="id" column="id" />
<result property="name" column="name" />
<!-- 子实体对象 -->
<association property="child" javaType="Child">
<id property="id" column="child_id" />
<result property="name" column="child_name" />
</association>
</resultMap>
<!-- 查询语句 -->
<select id="getParents" resultMap="parentResultMap">
SELECT p.id, p.name, c.id AS child_id, c.name AS child_name
FROM parent_table p
LEFT JOIN child_table c ON p.id = c.parent_id
</select>
<!-- 父实体对象 -->
<resultMap id="parentResultMap" type="Parent">
<id property="id" column="id" />
<result property="name" column="name" />
<!-- 子实体对象 -->
<association property="child" javaType="Child" select="getChildsByParentId" />
</resultMap>
<!-- 子实体对象的查询语句 -->
<select id="getChildsByParentId" resultType="Child">
SELECT id, name
FROM child_table
WHERE parent_id = #{id}
</select>
<!-- 查询语句 -->
<select id="getParents" resultMap="parentResultMap">
SELECT id, name
FROM parent_table
</select>
其中,getChildsByParentId是一个独立的查询语句,用于获取子实体对象的数据。而嵌套选择标签中的select属性则指定了要执行的查询语句。
以上是几种常见的一对多映射实现方式,根据具体的业务需求和数据结构,可以选择适合的方式来实现。