3、Mybatis-Plus 自定义sql语句

本文档介绍了如何在SpringBoot项目中集成并使用Mybatis-Plus进行数据操作,包括创建mapper文件、定义接口方法、实现SQL语句以及进行单元测试。通过一个具体的例子展示了如何根据ID查询用户信息并打印测试结果。
摘要由CSDN通过智能技术生成

第一篇:1、Mybatis-Plus 创建SpringBoot项目
第二篇:2、Mybatis-Plus 测试增、删、改、查

1、文档结构

在这里插入图片描述


2、编写的mapper文件

<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.zyz.mybatisplus.mapper.UserMapper">

    <!--    Map<String,Object> selectMapById(Long id);-->
    <select id="selectMapById" resultType="map">
        select id,name,age,email from mybatis_plus.user where id =#{id}
    </select>

</mapper>

3、mapper.xml文件的解释说明

在这里插入图片描述


4、在mapper接口中定义方法

@Repository
public interface UserMapper extends BaseMapper<User> {

    /**
     * 根据id查询用户信息为map集合
     * @param id
     * @return
     */
  Map<String,Object> selectMapById(Long id);

}

5、在mapper.xml文件中实现接口方法的sql语句,如2

6、在单元测试中测试自定义的sql语句

//自定义sql语句查询用户信息
Map<String,Object> map = userMapper.selectMapById(1L);
System.out.println(map);

7、测试结果

在这里插入图片描述

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

乡下小哥编程

整理不易、多谢支持

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

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

打赏作者

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

抵扣说明:

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

余额充值