欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

程序员文章站 2022-03-24 10:19:59
目录一、什么是mybatis-plus1、在java中访问数据库2、mybatis-plus简介3、mybatis-plus特性二、第一个mybatis-plus开发1、使用mp的步骤: 前提:数据库...

一、什么是mybatis-plus

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

1、在java中访问数据库

1. 直接使用jdbc,访问数据库,创建connection,resultset
2. 把jdbc操作进行了封装,创建了很多工具类,比如dbutil
3. 持久层框架
   (1)hibernate:全程的orm框架。 实现java object ---表的映射,操作java对象操作数据库表
                 可以使用hibernate访问不同的数据库,不需要改变代码
   (2)jpa规范:hibernate open-jpa ,link(定义一样的方法操作数据库)
   (3)mybatis:编写xml文件,在xml中编写sql语句,访问数据库,任何操作都需要使用xml文件
      需要熟悉sql语言,开发效率低一些,单表的crud也需要使用xml文件编写sql语句
   (4)mybatis-plus 简称mp,对mybatis的增强,在mybatis-plus之外加一层,单表操作
      可以不使用xml文件,分页,性能统计,逻辑删除等。

2、mybatis-plus简介

mybatis-plus(简称 mp )是一个 mybatis 的增强工具,在 mybatis 的基础上只做增强不做改变,为简化开发、提高效率而生。mybatis-plus 在 mybatis 之上套了一层外衣,单表 curd 的操作几乎都可以由 mybatis-plus 代替执行。而且提供了各种查询方式,分页行为。作为使用者无需编写 xml,直接调用 mybatis-plus 提供的 api 就可以了。

官网:http://mp.baomidou.com/

3、mybatis-plus特性

1.无侵入:只做增强不做改变,引入它不会对现有工程产生影响,如丝般顺滑
2.损耗小:启动即会自动注入基本 curd,性能基本无损耗,直接面向对象操作
3.强大的 crud 操作:内置通用 mapper、通用 service,仅仅通过少量配置即可实现单表大部分 crud 操作,
   更有强大的条件构造器,满足各类使用需求 
4.支持 lambda 形式调用:通过 lambda 表达式,方便的编写各类查询条件,无需再担心字段写错
5.支持主键自动生成:支持多达 4 种主键策略(内含分布式唯一 id 生成器 - sequence),
   可*配置,完美解决主键问题
6.支持 activerecord 模式:支持 activerecord 形式调用,
  实体类只需继承 model 类即可进行强大的 crud 操作
7.支持自定义全局通用操作:支持全局通用方法注入( write once, use anywhere )
8.内置代码生成器:采用代码或者 maven 插件可快速生成 mapper 、 model 、 service 、 controller 层代码,
   支持模板引擎,更有超多自定义配置等您来使用  
9.内置分页插件:基于 mybatis 物理分页,开发者无需关心具体操作,
配置好插件之后,写分页等同于普通 list 查询
10.分页插件支持多种数据库:支持 mysql、mariadb、oracle、db2、h2、hsql、sqlite、postgre、sqlserver 等多种数据库
11.内置性能分析插件:可输出 sql 语句以及其执行时间,建议开发测试时启用该功能,能快速揪出慢查询
12.内置全局拦截插件:提供全表 delete 、 update 操作智能分析阻断,也可自定义拦截规则,预防误操作

二、第一个mybatis-plus开发

1、使用mp的步骤: 前提:数据库/表创建

create table user (
  id int ( 11 ) not null auto_increment,
  name varchar ( 50 ) default null,
  email varchar ( 80 ) default null,
  age int ( 11 ) default null,
  primary key ( id ) 
) engine = innodb auto_increment = 1 default charset = utf8;

(1)新建的spring boot 工程

(2)指定maven的mp坐标

      <dependency>
            <groupid>com.baomidou</groupid>
            <artifactid>mybatis-plus-boot-starter</artifactid>
            <version>3.3.2</version>
        </dependency>

(3)指定数据库的驱动

        <dependency>
            <groupid>mysql</groupid>
            <artifactid>mysql-connector-java</artifactid>
            <scope>runtime</scope>
        </dependency>

在application.yml中进行配置数据库(数据库名plus)

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.driver
    url: jdbc:mysql://127.0.0.1:3306/plus?usessl=false&servertimezone=utc
    username: root
    password: root

(4)创建实体类 定义属性 指定主键的类型

public class user {
    /**
     * 指定主键的方式
     * value:主键字段的名称,如果是id可以不用写
     * type:指定主键的类型,主键的值如何生成:idtype.auto表示自动增长
     */
    @tableid(value ="id",type = idtype.auto)
    private integer id;
    private string name;
    private string email;
    private integer age;

(5)创建dao接口,需要继承basemapper<实体.class>

/**
 * @author 王恒杰
 * @description:
 * 自定义的mapper,dao接口
 * 1.实现basemapper
 * 2.要指定实体类对象
 *
 * basemapper是mybatis-plus的对象,定义了17个方法(crud)
 */
public interface usermapper extends basemapper<user> {
}

(6)在springboot的启动类上,加入@mappperscan(value=“指定dao接口的包名”);

/**
 * @author 王恒杰
 * @mapperscan:扫描器,指定mapper所在的包名
 */
@springbootapplication
@mapperscan(value = "com.tjcu.mapper")
public class mybatisplusapplication {

    public static void main(string[] args) {
        springapplication.run(mybatisplusapplication.class, args);
    }
}

(7)测试使用

在测试类或service注入dao接口,框架使用动态代理 创建dao的实现类对象
调用basemapper 中的方法,完成crud操作

/*
  suppresswarnings:该批注的作用是给编译器一条指令,
  告诉它对被批注的代码元素内部的某些警告保持静默。
  添加@suppresswarnings("all")之后 private usermapper userdao;中的userdao才不报错
  */
@suppresswarnings("all")
@springboottest
class mybatisplusapplicationtests {
 
    /**
        使用自动注入,注入mapper对象(dao)
     * @autowired 注释,它可以对类成员变量、方法及构造函数进行标注,
     * 完成自动装配的工作。 通过 @autowired的使用来消除 set ,get方法。
     */
    @autowired
    private usermapper userdao;

    /**
     * 测试添加操作
     */
    @test
    public void testuserinsert() {
        //创建user对象
        user user = new user();
        user.setname("王恒杰");
        user.setage(20);
        user.setemail("123@qq.com");
        //调用usermapper的方法,也就是父接口basemapper中提供的方法
        int i = userdao.insert(user);
        system.out.println(i);
    }
}

@autowired解释

@autowired 注释,它可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。
通过 @autowired的使用来消除 set ,get方法。

@suppresswarnings(“all”)解释

@suppresswarnings:该批注的作用是给编译器一条指令,
告诉它对被批注的代码元素内部的某些警告保持静默。

2、mybatis-plus日志

在application.yml中进行配置

mybatis-plus:
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.stdoutimpl

配置日志文件后的控制台

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

三、mp操作crud 的 基本用法

1、添加数据后,获取主键值(mp可以自动实现主键回填)

操作插入数据之前数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

测试代码

    /**
     * 测试添加数据后,获取主键值
     */
    @test
    public void testuserinsertgetid() {
        user user = new user();
        user.setname("杨福君");
        user.setage(19);
        user.setemail("10019@qq.com");
        int rows = userdao.insert(user);
        //获取主键的id,刚添加数据的id ,getid主键字段对应的get方法
        integer id = user.getid();
        system.out.println("主键的id"+id);
    }

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

操作插入数据之后数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

2、更新数据

basemapper接口中的更新方法(源码

 int updatebyid(@param("et") t entity);

int update(@param("et") t entity, @param("ew") wrapper<t> updatewrapper);

(1)更新数据实现 更新数据之前数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

mybatis-plus封装的sql语句

update user set name=?, email=?, age=? where id=? 

测试代码

    /**
     * 更新用户
     */
    @test
    public void updateuser(){
        user user = new user();
        user.setname("被修改后的王恒杰");
        user.setage(22);
        user.setemail("1259387078@qq.com");
        //被更改的用户
        user.setid(2);
        //更新所有非null的值
        int i = userdao.updatebyid(user);
        system.out.println("影响行数"+i);
    }

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

更新数据之后数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

(2)更新数据的是所有非null的值

int updatebyid(@param("et") t entity);

这个方法更新的是所有非null的值,如果实体类是int类型的(非包装类型),那这个数就自动更改为0

将age的类型改为int之后

    @tableid(value ="id",type = idtype.auto)
    private integer id;
    private string name;
    private string email;
    private int age;

测试代码

     /**
     * 更新用户,只更新姓名数据
     */
    @test
    public void updateuser(){
        user user = new user();
        user.setname("被修改后的杨福君");
        //被更改的用户
        user.setid(3);
        //更新所有非null的值
        int i = userdao.updatebyid(user);
        system.out.println("影响行数"+i);
    }

mybatis-plus封装的sql语句

update user set name=?, age=? where id=? 

更新数据之后数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

注意: 我们使用mybatis-plus时实体类最好使用包装类型 ,避免出现基本数据类型 ,更新数据时,没修改的为0的情况

3、删除数据

basemapper接口中的删除方法(源码

1.int deletebyid(serializable id);

2.int deletebymap(@param("cm") map<string, object> columnmap);

3.int delete(@param("ew") wrapper<t> wrapper);

4.int deletebatchids(@param("coll") collection<? extends serializable> idlist);

(1)deletebyid:按主键删除 删除数据之前数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

测试代码

    /**
     * 删除用户
     * 按主键删除一条用户
     * 方法为:deletebyid
     * 参数:主键值
     * 返回值:是删除的成功的记录数
     */
    @test
    public void deleteuserbyid(){
        int i = userdao.deletebyid(2);
        system.out.println(i);
    }

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

mybatis-plus封装的sql语句

 delete from user where id=? 

删除数据之后数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

(2)根据map中条件删除

删除数据之前数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

测试代码

  /**
     * 按条件删除数据,条件是封装到map对象中
     * 方法:deletebymap(map对象)
     */
    @test
    public void deleteuserbymap(){
    // 创建map对象,保存条件值
        hashmap<string, object> map = new hashmap<>();
        map.put("name","王恒杰");
        map.put("age",20);
        //delete from user where name = ? and age = ? 
        int i = userdao.deletebymap(map);
        system.out.println(i);
    }

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

mybatis-plus封装的sql语句

delete from user where name = ? and age = ? 

删除数据之后数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

(3)批量删除

删除数据之前数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

测试代码

   /**
     * 批量删除
     * deletebatchids(@param("coll") collection<? extends serializable> idlist);
     */
    @test
    public void deletebatchids(){
        arraylist<integer> ids = new arraylist<>();
        ids.add(4);
        ids.add(5);
        ids.add(6);
        int i = userdao.deletebatchids(ids);
        system.out.println(i);
    }

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

mybatis-plus封装的sql语句

delete from user where id in ( ? , ? , ? ) 

删除数据之后数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

(4)使用lambda表达式实现批量删除

批量删除数据之前数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

测试代码

 /**
     * lambda实现批量删除
     * deletebatchids(@param("coll") collection<? extends serializable> idlist);
     */
    @test
    public void deletebylambda(){
        list<integer> ids= 
        stream.of(3, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19).collect(collectors.tolist());
        int i = userdao.deletebatchids(ids);
        system.out.println(i);
    }

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

mybatis-plus封装的sql语句

delete from user where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) 

批量删除数据之后数据库的数据

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

4、查询数据

basemapper接口中的查询十种 方法(源码

    //通过id查询
    t selectbyid(serializable id);
    //批量查询
    list<t> selectbatchids(@param("coll") collection<? extends serializable> idlist);
    //多个条件查询
    list<t> selectbymap(@param("cm") map<string, object> columnmap);
     //查询一个对象
    t selectone(@param("ew") wrapper<t> querywrapper);
    //统计的count值
    integer selectcount(@param("ew") wrapper<t> querywrapper);
     //条件查询
    list<t> selectlist(@param("ew") wrapper<t> querywrapper);

    list<map<string, object>> selectmaps(@param("ew") wrapper<t> querywrapper);

    list<object> selectobjs(@param("ew") wrapper<t> querywrapper);
    //分页查询
    <e extends ipage<t>> e selectpage(e page, @param("ew") wrapper<t> querywrapper);

    <e extends ipage<map<string, object>>> e selectmapspage(e page, @param("ew") wrapper<t> querywrapper);

(1)根据 id 主键查询

测试代码

   /**
     * 通过id查询
     * 如果根据主键没有查到数据,得到的返回值是null
     *
     */
    @test
    public void selectuserbyid(){
        user user = userdao.selectbyid(26);
        system.out.println(user);
    }

mybatis-plus封装的sql语句

select id,name,email,age from user where id=? 

控制台展示

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

(2)批量查询记录 测试代码

    /**
     * 实现批处理查询,根据多个主键查询,获取到list
     * 方法:selectbatchids
     * 参数:id集合
     * 返回值:list<t>
     */
    @test
    public void selectbatchids(){
        arraylist<integer> ids = new arraylist<>();
        ids.add(23);
        ids.add(24);
        ids.add(25);
        ids.add(26);
        list<user> users = userdao.selectbatchids(ids);
        for (user user : users) {
            system.out.println(user);
        }
    }

mybatis-plus封装的sql语句

select id,name,email,age from user where id in ( ? , ? , ? , ? ) 

控制台输出结果

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

(3)lambda实现批量查询

测试代码

 /**
     * 使用lambda实现批处理查询,根据多个主键查询,获取到list
     * 方法:selectbatchidsbylambda
     * 参数:id集合
     * 返回值:list<t>
     */
    @test
    public void selectbatchidsbylambda(){
        list<integer> ids = stream.of(24, 25, 26, 27, 28).collect(collectors.tolist());
        list<user> users = userdao.selectbatchids(ids);
        //遍历
        for (int i = 0; i < users.size(); i++) {
            system.out.println("查询出来的第"+(i+1)+"个用户:"+users.get(i));
        }
    }

mybatis-plus封装的sql语句

select id,name,email,age from user where id in ( ? , ? , ? , ? , ? ) 

控制台输出结果

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

(4)使用map条件查询查询单个用户

测试代码

//查询单个用户
        hashmap<string, object> map1 = new hashmap<>();
        // 姓名:杨福君
        map1.put("name", "杨福君");
        //    年龄 :19
        map1.put("age", 19);
        list<user> users = userdao.selectbymap(map1);
        for (user user : users) {
            system.out.println(user);
        }

mybatis-plus封装的sql语句

//查询单个用户
        hashmap<string, object> map1 = new hashmap<>();
        // 姓名:杨福君
        map1.put("name", "杨福君");
        //    年龄 :19
        map1.put("age", 19);
        list<user> users = userdao.selectbymap(map1);
        for (user user : users) {
            system.out.println(user);
        }

控制台输出结果

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

(5)使用map条件查询查询多个用户 测试代码

//询多个用户
        hashmap<string, object> map2 = new hashmap<>();
        // 姓名:王恒杰
        map2.put("name", "王恒杰");
        //    年龄 :21
        map2.put("age", 21);
        list<user> users1 = userdao.selectbymap(map2);
        for (user user : users1) {
            system.out.println(user);
        }

mybatis-plus封装的sql语句

 select id,name,email,age from user where name = ? and age = ? 

控制台输出结果

详解Mybatis-plus(MP)中CRUD操作保姆级笔记

5、mybatis-plus中crud的底层实现原理

通过使用动态代理 的方式来生成dao对象,来调用sqlsession底层方法,对mybatis进行封装和增强,用mybatis-plus替代mybatis

到此这篇关于详解mybatis-plus(mp)中crud操作保姆级笔记的文章就介绍到这了,更多相关mybatis-plus中crud操作内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!