SpringBoot +MyBatis +MyBatis Plus

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

官方网址:https://mybatis.plus/

愿景:成为 MyBatis 最好的搭档,就像 魂斗罗 中的 1P、2P,基友搭配,效率翻倍。

SpringBoot +MyBatis +MyBatis Plus_第1张图片

(2)Mybatis 与 JPA

MyBatis:简单的CRUD需要写sql语句,如果修改项目要修改大量xml,但很灵活

JPAJava Persistence APIJava持久层API)MyBatis plus:通过注解以及接口方法,实现Java持久化功能

SpringBoot +MyBatis +MyBatis Plus_第2张图片

SpringBoot +MyBatis +MyBatis Plus_第3张图片

(3)SpringBoot + Mybatis plus单表Junit测试步骤:

       引入依赖

<parent>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-parentartifactId>
    <version>2.2.5.RELEASEversion>
    <relativePath/>
parent>

<dependencies>
    <dependency>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-webartifactId>
    dependency>

   
   
<dependency>
        <groupId>com.baomidougroupId>
        <artifactId>mybatis-plus-boot-starterartifactId>
        <version>3.1.0version>
    dependency>
   
   
<dependency>
        <groupId>com.alibabagroupId>
        <artifactId>druidartifactId>
        <version>1.1.6version>
    dependency>
    <dependency>
        <groupId>mysqlgroupId>
        <artifactId>mysql-connector-javaartifactId>
        <scope>runtimescope>
    dependency>
    <dependency>
        <groupId>org.projectlombokgroupId>
        <artifactId>lombokartifactId>
        <optional>trueoptional>
    dependency>
    <dependency>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-testartifactId>
        <scope>testscope>
        <exclusions>
            <exclusion>
                <groupId>org.junit.vintagegroupId>
                <artifactId>junit-vintage-engineartifactId>
            exclusion>
        exclusions>
    dependency>
    <dependency>
        <groupId>junitgroupId>
        <artifactId>junitartifactId>
        <scope>testscope>
    dependency>
dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-maven-pluginartifactId>
        plugin>
    plugins>
build>

在application.xml中配置mybatis plus

SpringBoot +MyBatis +MyBatis Plus_第4张图片

数据表

CREATE TABLE `user` (

  `user_id` int(11) NOT NULL AUTO_INCREMENT,

  `user_name` varchar(255) DEFAULT NULL,

  `sex` varchar(255) DEFAULT NULL,

  PRIMARY KEY (`user_id`)

) ENGINE=InnoDB CHARSET=utf8mb4;

实体类

SpringBoot +MyBatis +MyBatis Plus_第5张图片

写mapper接口(继承BaseMapper

SpringBoot +MyBatis +MyBatis Plus_第6张图片

测试类

SpringBoot +MyBatis +MyBatis Plus_第7张图片

(3)通用service

mybatis-plus 提供两种包含预定义增删改查操作的接口:

com.baomidou.mybatisplus.core.mapper.BaseMapper

com.baomidou.mybatisplus.extension.service.IService

Mybatis-plus提供了2个接口1个类

       BaseMapper 针对dao层的方法封装  CRUD

         IService 针对业务逻辑层的封装 需要指定Dao层类和对应的实体类  是在BaseMapper基础上的加强

通用 Service CRUD 封装IService接口,进一步封装 CRUD 采用 get 查询单行 remove 删除 list 查询集合 page 分页 前缀命名方式区分 Mapper 层避免混淆

UserMapper

SpringBoot +MyBatis +MyBatis Plus_第8张图片

UserService

SpringBoot +MyBatis +MyBatis Plus_第9张图片

UserServiceImpl

SpringBoot +MyBatis +MyBatis Plus_第10张图片

测试

SpringBoot +MyBatis +MyBatis Plus_第11张图片

 

 

你可能感兴趣的:(Springboot,mybatis,plus)