MyBatis入门(二)—— 输入映射和输出映射、动态sql、关联查询

时间:2023-03-10 02:13:00
MyBatis入门(二)—— 输入映射和输出映射、动态sql、关联查询

一、输入映射和输出映射

1. parameterType(输入类型)

1.1 传递简单类型

 <select id="getUserById" parameterType="int" resultType="com.cenobitor.pojo.User">
  SELECT `id`,`username`,`birthday`,`sex`,`address` FROM `user` WHERE id = #{id}
</select>

1.2 传递pojo对象

 <insert id="insertUser" parameterType="com.cenobitor.pojo.User">
INSERT INTO USER (`username`,`birthday`,`sex`,`address`)
VALUES (#{username},#{birthday},#{sex},#{address})
</insert>

Mybatis使用ognl表达式解析对象字段的值,#{}或者${}括号中的值为pojo属性名称。

1.3 传递pojo包装对象

 <!-- 1、resultType:如果要返回数据集合,只需设定为每一个元素的数据类型
 2、 包装的pojo取值通过 "."来获取,如取包装的pojo中user属性对象里的username属性的表达式为:user.username
-->
<select id="getUserByQueryVo" parameterType="queryvo" resultType="com.cenobitor.mybatis.pojo.User">
  SELECT * FROM USER WHERE username LIKE '%${user.username}%'
</select>

2. resultType(输出类型)

2.1 输出简单类型

 <!-- 查询用户总记录数,演示返回简单类型 -->
<select id="getUserCount" resultType="int">
  SELECT COUNT(1) FROM USER
</select>

2.2 输出pojo对象:

 <select id="getUserById" parameterType="int" resultType="com.cenobitor.pojo.User">
  SELECT `id`,`username`,`birthday`,`sex`,`address` FROM `user` WHERE id = #{id}
</select>

2.3输出pojo列表

 <select id="getUserById" parameterType="int" resultType="com.cenobitor.pojo.User">
  SELECT `id`,`username`,`birthday`,`sex`,`address` FROM `user` WHERE sex = #{sex}
</select>

2.4 输出resultMap

表字段与pojo属性不一致时引出的resultMap

 <!-- resultMap入门
  type:映射成的pojo类型
  id:resultMap唯一标识
-->
<resultMap type="order" id="orderMap">   <!-- id标签用于绑定主键 -->
  <id property="id" column="id"/>   <!-- 使用result绑定普通字段 -->
  <result property="number" column="number"/>
  <result property="createtime" column="createtime"/>
  <result property="note" column="note"/>
</resultMap> <!-- 使用resultMap -->
<select id="getOrderListResultMap" resultMap="orderMap">
  SELECT * FROM `order`
</select>
二、动态sql

2.1  If

由多查询条件拼装引出if标签。

 <!-- 演示动态sql-if标签的使用情景 -->
<select id="getUserByWhere" parameterType="user" resultType="com.cenobitor.mybatis.pojo.User">
  SELECT * FROM USER where 1 = 1
  <!-- if标签的使用 -->
  <if test="id != null">
    and id = #{id}
  </if>
  <if test="username != null and username != ''">
    and username LIKE '%${username}%'
  </if>
</select>

2.2 Where

 <!-- 演示动态sql-where标签的使用情景 -->
<select id="getUserByWhere2" parameterType="user" resultType="com.cenobitor.mybatis.pojo.User">
  <!-- include:引入sql片段,refid引入片段id -->
  SELECT * FROM USER
  <!-- where会自动加上where同处理多余的and -->
  <where>
    <!-- if标签的使用 -->
    <if test="id != null">
      and id = #{id}
    </if>
    <if test="username != null and username != ''">
      and username LIKE '%${username}%'
    </if>
  </where>
</select>

2.3 Foreach

 <!-- 演示动态sql-foreach标签的使用情景 -->
<select id="getUserByIds" parameterType="queryvo" resultType="com.cenobitor.mybatis.pojo.User">
  SELECT * FROM USER
  <!-- where会自动加上where同处理多余的and -->
  <where>
    <!-- id IN(1,10,25,30,34) -->
    <!-- foreach循环标签
       collection:要遍历的集合,来源入参
       open:循环开始前的sql
       separator:分隔符
       close:循环结束拼接的sql
    -->
    <foreach item="uid" collection="ids" open="id IN(" separator="," close=")">
      #{uid}
    </foreach>
  </where>
</select>

2.4 Sql片段

演示通过select * 不好引出查询字段名,抽取共用sql片段。

① 定义

 <!-- sql片段 定义,id:片段唯一标识 -->
<sql id="user_column">
  `id`, `username`, `birthday`, `sex`, `address`, `uuid2`
</sql>

② 使用

 SELECT
<!-- sql片段的使用:include:引入sql片段,refid引入片段id -->
<include refid="user_column" />
FROM USER
三、关联查询

3.1 一对一关联

① 方法一,使用resultType

 <!-- 一对一关联查询,使用resultType -->
<select id="getOrderUser" resultType="orderuser">
  SELECT
    o.`id`, o.`user_id` userId, o.`number`, o.`createtime`, o.`note`, u.`username`, u.`address`
  FROM `order` o
  LEFT JOIN `user` u
  ON u.id = o.`user_id`
</select>

②方法二,使用resultMap

 <!-- 一对一关联查询-resultMap -->
<resultMap type="order" id="order_user_map">
  <!-- id标签用于绑定主键 -->
  <id property="id" column="id"/>
  <!-- 使用result绑定普通字段 -->
  <result property="userId" column="user_id"/>
  <result property="number" column="number"/>
  <result property="createtime" column="createtime"/>
  <result property="note" column="note"/>
  <!-- association:配置一对一关联
    property:绑定的用户属性
    javaType:属性数据类型,支持别名
   -->
  <association property="user" javaType="com.cenobitor.mybatis.pojo.User">
    <id property="id" column="user_id"/>
    <result property="username" column="username"/>
    <result property="address" column="address"/>
    <result property="sex" column="sex"/>
  </association>
</resultMap> <!-- 一对一关联查询-使用resultMap -->
<select id="getOrderUser2" resultMap="order_user_map">
  SELECT
  o.`id`,o.`user_id`, o.`number`, o.`createtime`, o.`note`, u.`username`, u.`address`, u.`sex`
  FROM `order` o
  LEFT JOIN `user` u
  ON u.id = o.`user_id`
</select>

3.2一对多关联

 <!-- 一对多关联查询 -->
<resultMap type="user" id="user_order_map">
  <id property="id" column="id" />
  <result property="username" column="username" />
  <result property="birthday" column="birthday" />
  <result property="address" column="address" />
  <result property="sex" column="sex" />
  <result property="uuid2" column="uuid2" />
  <!-- collection:配置一对多关系
    property:用户下的order属性
    ofType:property的数据类型,支持别名
  -->
  <collection property="orders" ofType="order">
    <!-- id标签用于绑定主键 -->
    <id property="id" column="oid"/>
    <!-- 使用result绑定普通字段 -->
    <result property="userId" column="id"/>
    <result property="number" column="number"/>
    <result property="createtime" column="createtime"/>
  </collection>
</resultMap>
<!-- 一对多关联查询 -->
<select id="getUserOrder" resultMap="user_order_map">
  SELECT
  u.`id`, u.`username`,u.`birthday`,u.`sex`,u.`address`,u.`uuid2`,o.`id` oid,o.`number`,o.`createtime`
  FROM `user` u
  LEFT JOIN `order` o
  ON o.`user_id` = u.`id`
</select>