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

MyBatis-Plus(第一章)

程序员文章站 2022-06-13 20:06:21
...

1、初始MyBatis-Plus

什么是MyBatis-Plus

在我们之前的学习SSM的过程中,MyBatis的编写可能有些繁琐,就比如一个Mapper接口就要对应一个xml,又要在xml中编写SQL语句,麻烦点,还要去处理结果集映射,等等等等…步骤好多啊!!!!为了让开发人员能偷点懒(早点下班),所以我们现在来学习MyBatis-Plus

官网:

MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。

MyBatis-Plus(第一章)

和MyBatis不同的是,他是一只戴蓝色眼罩的鸟,而且是由国人开发的

MyBatis-Plus的特性:

  • 无侵入:只做增强不做改变,引入它不会对现有工程产生影响,如丝般顺滑
  • 损耗小:启动即会自动注入基本 CURD,性能基本无损耗,直接面向对象操作
  • 强大的 CRUD 操作:内置通用 Mapper、通用 Service,仅仅通过少量配置即可实现单表大部分 CRUD 操作,更有强大的条件构造器,满足各类使用需求
  • 支持 Lambda 形式调用:通过 Lambda 表达式,方便的编写各类查询条件,无需再担心字段写错
  • 支持主键自动生成:支持多达 4 种主键策略(内含分布式唯一 ID 生成器 - Sequence),可*配置,完美解决主键问题
  • 支持 ActiveRecord 模式:支持 ActiveRecord 形式调用,实体类只需继承 Model 类即可进行强大的 CRUD 操作
  • 支持自定义全局通用操作:支持全局通用方法注入( Write once, use anywhere )
  • 内置代码生成器:采用代码或者 Maven 插件可快速生成 Mapper 、 Model 、 Service 、 Controller 层代码,支持模板引擎,更有超多自定义配置等您来使用
  • 内置分页插件:基于 MyBatis 物理分页,开发者无需关心具体操作,配置好插件之后,写分页等同于普通 List 查询
  • 分页插件支持多种数据库:支持 MySQL、MariaDB、Oracle、DB2、H2、HSQL、SQLite、Postgre、SQLServer 等多种数据库
  • 内置性能分析插件:可输出 Sql 语句以及其执行时间,建议开发测试时启用该功能,能快速揪出慢查询
  • 内置全局拦截插件:提供全表 delete 、 update 操作智能分析阻断,也可自定义拦截规则,预防误操作

MyBatis-Plus支持的数据库:

  • mysql 、mariadb 、oracle 、db2 、h2 、hsql 、sqlite 、postgresql 、sqlserver 、presto 、Gauss 、Firebird
  • Phoenix 、clickhouse 、Sybase ASE 、 OceanBase 、达梦数据库 、虚谷数据库 、人大金仓数据库 、南大通用数据库 、

MyBatis-Plus的框架结构:

MyBatis-Plus(第一章)

以后我们将深入了解

快速入门:

通过上面的阐述,你大概对MyBatis-Plus有了大概的了解,现在我们来编写一个案例来快速上手,然后,你就会发现,原来MyBatis-Plus这么强大

在正式开始之前,你需要

  • 拥有 Java 开发环境以及相应 IDE
  • 熟悉 Spring Boot
  • 熟悉 Maven

如果满足上述条件,那么我们开始编写了

环境搭建

当然 MyBatis-Plus也要和数据库打交道,现在我们来创建数据库(以mysql为例)

create DATABASE mybatis_plus;

use mybatis_plus;

CREATE TABLE `user`
(
	id BIGINT(20) NOT NULL COMMENT '主键ID',
	name VARCHAR(30) NULL DEFAULT NULL COMMENT '姓名',
	age INT(11) NULL DEFAULT NULL COMMENT '年龄',
	email VARCHAR(50) NULL DEFAULT NULL COMMENT '邮箱',
	PRIMARY KEY (id)
);

DELETE FROM user;

INSERT INTO user (id, name, age, email) VALUES
(1, 'Jone', 18, 'aaa@qq.com'),
(2, 'Jack', 20, 'aaa@qq.com'),
(3, 'Tom', 28, 'aaa@qq.com'),
(4, 'Sandy', 21, 'aaa@qq.com'),
(5, 'Billie', 24, 'aaa@qq.com');

使用MyBatis-Plus之前,我们需要创建一个SpringBoot项目,然后我们要在pom.xml中添加如下依赖

<!--MyBatis-Plus -->
<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-boot-starter</artifactId>
    <version>3.4.0</version>
</dependency>
<!--mysql -->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.49</version>
</dependency>

这里要注意,千万不要添加了MyBatis的依赖了,否则将会出现版本或依赖冲突的问题

等待maven导入对应的依赖之后,我们要对application.yaml进行配置了

spring:
  datasource:
    username: root
    password: root
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/mybatis_plus

在这里一定要注意 MySQL使用的版本,更具版本来编写对应的url

现在我们编写实体类

public class User {
    private int id;
    private String name;
    private int age;
    private String email;
	//...省略get set constructor
}

继续编写mapper

@Repository//标志这是一个mapper
public interface UserMapper extends BaseMapper<User> {//BaseMapper中的泛型直接填写实体类

}

好了,我们的mapper就这么多了,那么我们不需要编写方法吗?其实并不用,BaseMapper已经帮我们做好了,如果我们需要添加其他业务,我们只需进行扩展就行,现在我们来看看他继承的父类BaseMapper的源码

public interface BaseMapper<T> extends Mapper<T> {
    int insert(T entity);

    int deleteById(Serializable id);

    int deleteByMap(@Param("cm") Map<String, Object> columnMap);

    int delete(@Param("ew") Wrapper<T> wrapper);

    int deleteBatchIds(@Param("coll") Collection<? extends Serializable> idList);

    int updateById(@Param("et") T entity);

    int update(@Param("et") T entity, @Param("ew") Wrapper<T> updateWrapper);

    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);

    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);
}

可以观察到,他几乎将我们平常使用的crud的操作都写好了,甚至还有分页,wocao。。。真就这么强大呗(茄子脸),活该获得下面的奖项

MyBatis-Plus(第一章)

不扯远了,我们接着编写

到了这个时候,不要忘了给SpringBoot启动类一个扫描注解

@MapperScan("com.mybatisplus.mapper")
@SpringBootApplication
public class DemoApplication {
    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
}

运行测试

好了,我们的基本步骤也就这么多了,现在我们测试运行一下

@SpringBootTest
class DemoApplicationTests {
    @Autowired
    UserMapper um;
    @Test
    void contextLoads() {
        /** 调用方法是,他要求我们传入一个Wrapper,他是一个条件构造器,也就是我们平常查询时所需要的条件,这里我们先改为null,以		 	*后我们将深入了解 
        */
        List<User> users = um.selectList(null);
        for (User user : users) {
            System.out.println(user);
        }
    }
}

直接运行,稍等片刻,打印结果如下:

MyBatis-Plus(第一章)

总结:

  1. MyBatis简化了开发人员操作jdbc的步骤,MyBatis-Plus则将MyBatis的步骤更加简化了
  2. MyBatis-Plus帮我们编写了sql
  3. MyBatis-Plus提供了crud的方法

也需睁着眼的人最难醒来