MyBatis——特殊SQL的执行及自定义映射resultMap

MyBatis——特殊SQL的执行及自定义映射resultMap

七、特殊SQL的执行

1、模糊查询

这是MySQL模糊查询的介绍:在最下面介绍了一些MySQL的条件查询的关键字
在这里插入图片描述

/**
* 测试模糊查询
* @param mohu
* @return
*/
List<User> testMohu(@Param("mohu") String mohu);
<!--List<User> testMohu(@Param("mohu") String mohu);-->
<select id="testMohu" resultType="User">
   <!--select * from t_user where username like '%${mohu}%'-->
   <!--select * from t_user where username like concat('%',#{mohu},'%')-->
   select * from t_user where username like "%"#{mohu}"%"
</select>

concat:连接字符串的函数这里讲述了一些MySQL的单行处理函数

2、批量删除

/**
* 批量删除
* @param ids
* @return
*/
int deleteMore(@Param("ids") String ids);
<!--int deleteMore(@Param("ids") String ids);-->
<delete id="deleteMore">
   delete from t_user where id in (${ids})
</delete>

in:只能用$(), 因为SQL语句中 in()中 不能有单引号。

3、动态设置表名

/**
* 动态设置表名,查询所有的用户信息
* @param tableName
* @return
*/
List<User> getAllUser(@Param("tableName") String tableName);
<!--List<User> getAllUser(@Param("tableName") String tableName);-->
<select id="getAllUser" resultType="User">
   select * from ${tableName}
</select>

4、添加功能获取自增的主键

  • t_clazz(clazz_id,clazz_name)
  • t_student(student_id,student_name,clazz_id)
  • 1、添加班级信息
  • 2、获取新添加的班级的id
  • 3、为班级分配学生,即将某学的班级id修改为新添加的班级的id
/**
* 添加用户信息
* @param user
* @return
* useGeneratedKeys:设置使用自增的主键
* keyProperty:因为增删改有统一的返回值是受影响的行数,因此只能将获取的自增的主键放在传输的参
数user对象的某个属性中
*/
int insertUser(User user);
<!--int insertUser(User user);-->
<insert id="insertUser" useGeneratedKeys="true" keyProperty="id">
   insert into t_user values(null,#{username},#{password},#{age},#{sex})
</insert>

八、自定义映射resultMap

1、resultMap处理字段和属性的映射关系

若字段名和实体类中的属性名不一致,则可以通过resultMap设置自定义映射

<!--
   resultMap:设置自定义映射
   属性:
   id:表示自定义映射的唯一标识
   type:查询的数据要映射的实体类的类型
   子标签:
   id:设置主键的映射关系
   result:设置普通字段的映射关系
   association:设置多对一的映射关系
   collection:设置一对多的映射关系
   属性:
   property:设置映射关系中实体类中的属性名
   column:设置映射关系中表中的字段名
-->
<resultMap id="userMap" type="User">
   <id property="id" column="id"></id>
   <result property="userName" column="user_name"></result>
   <result property="password" column="password"></result>
   <result property="age" column="age"></result>
   <result property="sex" column="sex"></result>
</resultMap>
<!--List<User> testMohu(@Param("mohu") String mohu);-->
<select id="testMohu" resultMap="userMap">
   <!--select * from t_user where username like '%${mohu}%'-->
   select id,user_name userName,password,age,sex from t_user where user_name like
concat('%',#{mohu},'%')
</select>

若字段名和实体类中的属性名不一致,但是字段名符合数据库的规则(使用_下划线标识法),实体类中的属性名符合Java的规则(使用驼峰标识法)
此时也可通过以下两种方式处理字段名和实体类中的属性的映射关系

  • 可以通过为字段起别名的方式(SQL语句中),保证和实体类中的属性名保持一致
  • 可以在MyBatis的核心配置文件中设置一个全局配置信息mapUnderscoreToCamelCase,可以在查询表中数据时,自动将_类型的字段名转换为驼峰
    在这里插入图片描述

例如:字段名user_name,设置了mapUnderscoreToCamelCase,此时字段名就会转换为userName。

2、多对一映射处理

  • 级联方式处理映射关系
<resultMap id="empDeptMap" type="Emp">
   <id column="eid" property="eid"></id>
   <result column="ename" property="ename"></result>
   <result column="age" property="age"></result>
   <result column="sex" property="sex"></result>
   <result column="did" property="dept.did"></result>
   <result column="dname" property="dept.dname"></result>
</resultMap>
<!--Emp getEmpAndDeptByEid(@Param("eid") int eid);-->
<select id="getEmpAndDeptByEid" resultMap="empDeptMap">
   select * from t_emp left join t_dept on t_emp.did = t_dept .did where t_emp.eid = #{eid}
</select>
  • 使用association处理映射关系
<resultMap id="empDeptMap" type="Emp">
   <id column="eid" property="eid"></id>
   <result column="ename" property="ename"></result>
   <result column="age" property="age"></result>
   <result column="sex" property="sex"></result>
   <association property="dept" javaType="Dept">
      <id column="did" property="did"></id>
      <result column="dname" property="dname"></result>
   </association>
</resultMap>
<!--Emp getEmpAndDeptByEid(@Param("eid") int eid);-->
<select id="getEmpAndDeptByEid" resultMap="empDeptMap">
   select * from t_emp left join t_dept on t_emp.did = t_dept .did where t_emp.eid = #{eid}
</select>
  • 分步查询
    1)查询员工信息
/**
* 通过分步查询查询员工信息
* @param eid
* @return
*/
Emp getEmpByStep(@Param("eid") int eid);
<resultMap id="empDeptStepMap" type="Emp">
   <id column="eid" property="eid"></id>
   <result column="ename" property="ename"></result>
   <result column="age" property="age"></result>
   <result column="sex" property="sex"></result>
<!--
   select:设置分步查询,查询某个属性的值的sql的标识(namespace.sqlId)
   column:将sql以及查询结果中的某个字段设置为分步查询的条件
-->
   <association property="dept"
      select="com.atguigu.MyBatis.mapper.DeptMapper.getEmpDeptByStep"
      column="did">
   </association>
</resultMap>
<!--Emp getEmpByStep(@Param("eid") int eid);-->
<select id="getEmpByStep" resultMap="empDeptStepMap">
   select * from t_emp where eid = #{eid}
</select>

2)根据员工所对应的部门id查询部门信息

/**
* 分步查询的第二步:根据员工所对应的did查询部门信息
* @param did
* @return
*/
Dept getEmpDeptByStep(@Param("did") int did);
<!--Dept getEmpDeptByStep(@Param("did") int did);-->
<select id="getEmpDeptByStep" resultType="Dept">
   select * from t_dept where did = #{did}
</select>

3、一对多映射处理

注意:多对一对应 对象,一对多 对应 集合

  • collection
/**
* 根据部门id查新部门以及部门中的员工信息
* @param did
* @return
*/
Dept getDeptEmpByDid(@Param("did") int did);
<resultMap id="deptEmpMap" type="Dept">
   <id property="did" column="did"></id>
   <result property="dname" column="dname"></result>
   <!--
      ofType:设置collection标签所处理的集合属性中存储数据的类型
   -->
   <collection property="emps" ofType="Emp">
      <id property="eid" column="eid"></id>
      <result property="ename" column="ename"></result>
      <result property="age" column="age"></result>
      <result property="sex" column="sex"></result>
   </collection>
</resultMap>
<!--Dept getDeptEmpByDid(@Param("did") int did);-->
<select id="getDeptEmpByDid" resultMap="deptEmpMap">
select dept.*,emp.* from t_dept dept left join t_emp emp on dept.did =emp.did where dept.did = #{did}
</select>
  • 分步查询

1)查询部门信息

/**
* 分步查询部门和部门中的员工
* @param did
* @return
*/
Dept getDeptByStep(@Param("did") int did);
<resultMap id="deptEmpStep" type="Dept">
   <id property="did" column="did"></id>
   <result property="dname" column="dname"></result>
   <collection property="emps" fetchType="eager"
      select="com.atguigu.MyBatis.mapper.EmpMapper.getEmpListByDid" 
      column="did">
   </collection>
</resultMap>
<!--Dept getDeptByStep(@Param("did") int did);-->
<select id="getDeptByStep" resultMap="deptEmpStep">
   select * from t_dept where did = #{did}
</select>

2)根据部门id查询部门中的所有员工

/**
* 根据部门id查询员工信息
* @param did
* @return
*/
List<Emp> getEmpListByDid(@Param("did") int did);
<!--List<Emp> getEmpListByDid(@Param("did") int did);-->
<select id="getEmpListByDid" resultType="Emp">
   select * from t_emp where did = #{did}
</select>
分步查询的优点:

可以实现延迟加载(只有当我们访问某个信息,它就会加载某个信息,如果没有延迟加载,则会把所有属性全部加载,造成资源浪费。
),但是必须在核心配置文件中设置全局配置信息:

  • lazyLoadingEnabled(默认关闭):延迟加载的全局开关。当开启时,所有关联对象都会延迟加载
  • aggressiveLazyLoading(默认关闭):当开启时,任何方法的调用都会加载该对象的所有属性。 否则,每个属性会按需加载

此时就可以实现按需加载,获取的数据是什么,就只会执行相应的sql。此时可通过association和collection中的fetchType属性设置当前的分步查询是否使用延迟加载,

  • fetchType=“lazy(延迟加载)|eager(立即加载)”
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

真真最可爱

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值