MyBatis-Plus 入门 【SpringBoot版】

今天来带大家入门学习MyBatis-Plus,MyBatis-Plus(简称 MP)是一个 MyBatis的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生

具体介绍大家可以去官网看介绍,我就不在这里再发一遍了。

简介 | MyBatis-Plus

MyBatis-Plus 入门 【SpringBoot版】_第1张图片

1、入门案例

首先我们要准备开发环境。

1.1 开发环境

以下是我自己电脑上的,大家可以根据自己实际的来。

IDE:idea 2021.1.1

lDEA中安装lombok插件

JDK:JDK1.8

构建工具:maven 3.5.4

MySQL版本:MySQL 5.7

Spring Boot:2.7.0

MyBatis-Plus:3.5.1

1.2 搭建SpringBoot工程

教程如下:快速上手springBoot(IDEA联网版带图)_一切总会归于平淡的博客-CSDN博客_idea 联网

引入依赖:

 


        
            org.springframework.boot
            spring-boot-starter
        

        
            org.springframework.boot
            spring-boot-devtools
            runtime
            true
        
        
            org.springframework.boot
            spring-boot-configuration-processor
            true
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
        
        
            com.baomidou
            mybatis-plus-boot-starter
            3.5.1
        
        
        
            org.projectlombok
            lombok
            true
        
        
        
            mysql
            mysql-connector-java
            runtime
        

    

1.3 编写代码

1、配置application.yml

server:
  port: 80
spring:
  application:
    name: mp
  datasource:  # 配置数据源信息
    url:  jdbc:mysql://localhost:3306/mybatis_plus?characterEncoding=utf-8&useSSL=false
    username: root  
    password: root
    driver-class-name: com.mysql.jdbc.Driver

数据库这里我就不提供给数据库脚本给大家了,大家随便找个库,或者自己建一个来练习即可。

注:

1、驱动类driver-class-name

spring boot 2.0(内置jdbc5驱动),驱动类使用: driver-class-name: com.mysql.jdbc.Driver

spring boot 2.1及以上(内置jdbc8驱动),驱动类使用:driver-class-name: com.mysql.cj.jdbc.Driver

否则运行测试用例的时候会有 WARN 信息

2、连接地址url

MySQL5.7版本的url:

jdbc:mysql://localhost:3306/mybatis_plus?characterEncoding=utf-8&useSSL=false

MySQL8.0版本的url:

jdbc:mysql://localhost:3306/mybatis_plus? serverTimezone=GMT%2B8&characterEncoding=utf-8&useSSL=false

否则运行测试用例报告如下错误:

java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more

2、 启动类

在Spring Boot启动类中添加@MapperScan注解,扫描mapper

MyBatis-Plus 入门 【SpringBoot版】_第2张图片

3、添加实体类

编写实体类 User.java(此处使用了 Lombok(opens new window)简化代码)

MyBatis-Plus 入门 【SpringBoot版】_第3张图片

1.4 添加mapper

BaseMapper是MyBatis-Plus提供的模板mapper,其中包含了基本的CRUD方法,泛型为操作的实体类型

package com.jie.mpdemo.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.jie.mpdemo.entity.User;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;

/**
 * @description: 用户映射器
 * @author: jie
 * @time: 2022/6/8 23:22
 */
@Mapper
public interface UserMapper extends BaseMapper {
}

1.5 测试

MyBatis-Plus 入门 【SpringBoot版】_第4张图片

注意:

IDEA在 userMapper 处报错,因为找不到注入的对象,因为类是动态创建的,但是程序可以正确

的执行。

为了避免报错,可以在mapper接口上添加 @Mapper || @Repository 注解

1.6 添加日志

在application.yml中配置日志输出

# 配置MyBatis日志
mybatis-plus:
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

MyBatis-Plus 入门 【SpringBoot版】_第5张图片

 

2、基本CRUD

2.1 BaseMapper

MyBatis-Plus中的基本CRUD在内置的BaseMapper中都已得到了实现,我们可以直接使用,我们可也把鼠标移到BaseMapper上,然后按住Ctrl 键,直接点进去看。

MyBatis-Plus 入门 【SpringBoot版】_第6张图片

2.2 插入

这里大家做单元测试是不是都要自己设置参数进去,这里我再给大家推荐一个IDEA插件 。

MyBatis-Plus 入门 【SpringBoot版】_第7张图片

MyBatis-Plus 入门 【SpringBoot版】_第8张图片

像上图,我们将鼠标移到 user 上 然后 alt + enter 就可以唤出菜单。

MyBatis-Plus 入门 【SpringBoot版】_第9张图片

最终执行的结果,所获取的id为1534570406825431042

这是因为MyBatis-Plus在实现插入数据时,会默认基于雪花算法的策略生成id

2.3 删除

1. 通过id删除记录

MyBatis-Plus 入门 【SpringBoot版】_第10张图片

2. 通过id批量删除记录

MyBatis-Plus 入门 【SpringBoot版】_第11张图片

3.通过map条件删除记录

MyBatis-Plus 入门 【SpringBoot版】_第12张图片

2.4 修改

MyBatis-Plus 入门 【SpringBoot版】_第13张图片

2.5 查询

1. 根据id查询用户信息

MyBatis-Plus 入门 【SpringBoot版】_第14张图片

2. 根据多个id查询多个用户信息

MyBatis-Plus 入门 【SpringBoot版】_第15张图片

3. 通过map条件查询用户信息

MyBatis-Plus 入门 【SpringBoot版】_第16张图片

4. 查询所有数据

MyBatis-Plus 入门 【SpringBoot版】_第17张图片

通过观察BaseMapper中的方法,大多方法中都有Wrapper类型的形参,此为条件构造器,可针对于SQL语句设置不同的条件,若没有条件,则可以为该形参赋值null,即查询(删除/修改)所有数据.

2.6 通用Service

详细直接看mybatis-plus的官网地址: CRUD 接口 | MyBatis-Plus

1. IService

MyBatis-Plus中有一个接口 IService和其实现类 ServiceImpl,封装了常见的业务层逻辑详情查看源码IService和ServiceImpl。

2. 创建Service接口和实现类

service

package com.jie.mpdemo.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.jie.mpdemo.entity.User;

/**
 * @description: UserService继承IService模板提供的基础功能
 * @author: jie
 * @time: 2022/6/9 0:56
 */
public interface UserService extends IService {
}

impl 

package com.jie.mpdemo.service.impl;

import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.jie.mpdemo.entity.User;
import com.jie.mpdemo.mapper.UserMapper;
import com.jie.mpdemo.service.UserService;
import org.springframework.stereotype.Service;

/**
 * @description: ServiceImpl实现了IService,提供了IService中基础功能的实现 *
 * 若ServiceImpl无法满足业务需求,则可以使用自定的UserService定义方法,并在实现类中实现
 * @author: jie
 * @time: 2022/6/9 0:57
 */
@Service("userServiceImpl")
public class UserServiceImpl extends ServiceImpl implements UserService {
}

3. 测试查询记录数

MyBatis-Plus 入门 【SpringBoot版】_第18张图片

4. 测试批量插入

MyBatis-Plus 入门 【SpringBoot版】_第19张图片

MyBatis-Plus 入门 【SpringBoot版】_第20张图片

若有收获,就点个赞吧

 

你可能感兴趣的:(#,MybatisPlus,spring,boot,intellij-idea,java,mybatis-plus,MybatisPlus)