2019-07-22

[if !supportLists]1.  [endif]Mybatis-Plus简介

[if !supportLists]1.1. [endif]什么是Mybatis-Plus

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


[if !supportLists]1.2. [endif]为什么要学习Mybatis-Plus

我们已经学习过Mybatis这个框架,我们只需要在dao层定义抽象接口,基于Mybatis零实现的特性,就可以实现对数据库的crud操作。

如下两个接口:


UserMapper接口

public interfaceUserMapper {


    int deleteByPrimaryKey(Long id);

    int insert(User user);


  List selectList();


  User selectByPrimaryKey(Longid);

}


OrderMapper接口

public interfaceOrderMapper {


    int deleteByPrimaryKey(Long id);

    int insert(Order order);


  List selectList();


  User selectByPrimaryKey(Longid);

}


在上面两个业务接口中,我们发现:它们定义了一组类似的crud方法。


在业务类型比较多的时候,我们需要重复的定义这组功能类似的接口方法。


如何解决这个问题呢?


使用Mybatis-plus工具,我们只需要将我们定义的抽象接口,继承一个公用的BaseMapper<T>接口,就可以获得一组通用的crud方法,来操作数据库!!!


使用Mybatis-plus时,甚至都不需要任何的xml映射文件或者接口方法注解,真正的dao层零实现。


public interface OrderMapper extends BaseMapper<User>{

   //BaseMapper已经实现了通用的curd的方法了。如果有需要非通用的操作,才在这里自定义

}



[if !supportLists]1.3. [endif]Mybatis-Plus小结

Mybatis-Plus只是在Mybatis的基础上,实现了功能增强,让开发更加简洁高效。


Mybatis-Plus并没有修改Mybatis的任何特性!!!

[if !supportLists]2.  [endif]入门示例

[if !supportLists]2.1. [endif]需求

使用Mybatis-Plus实现对用户的crud操作。


[if !supportLists]2.2. [endif]配置步骤说明

(1)搭建环境(创建项目、导入包)

(2)配置Mybaits-Plus(基于Spring实现)

(3)编写测试代码


[if !supportLists]2.3. [endif]配置步骤

[if !supportLists]2.3.1.  [endif]第一部分:搭建环境

[if !supportLists]2.3.1.1.           [endif]前提

已经创建好了数据库环境:

CREATE  TABLE `tb_user` (

  `id` bigint(20) NOT NULL COMMENT '主键ID',

  `name` varchar(30) DEFAULT NULL COMMENT '姓名',

  `age` int(11) DEFAULT NULL COMMENT '年龄',

  `email` varchar(50) DEFAULT NULL COMMENT '邮箱',

  PRIMARY KEY (`id`)

)

[if !supportLists]2.3.1.2.           [endif]说明

(1)Mybatis-Plus并没有提供单独的jar包,而是通过Maven(或者gradle)来管理jar依赖。本教程需要使用Maven构建项目。


(2)Mybatis-Plus是基于Spring框架实现的,因此使用Mybatis-Plus,必须导入Spring相关依赖。


[if !supportLists]2.3.1.3.           [endif]第一步:创建一个Maven项目

因为我们只是测试MybatisPlus框架,所以创建一个jar项目就可以了

[if !vml]

[endif]


[if !supportLists]2.3.1.4.           [endif]第二步:配置pom.xml构建文件

--需要导入依赖,并且配置项目的编码,JDK版本等构建信息

<projectxmlns="http://maven.apache.org/POM/4.0.0"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>org.chu.mybatisplus</groupId>

    <artifactId>mybatisplus-demo-01-start</artifactId>

    <version>1.0</version>


    <!-- 依赖 -->

    <dependencies>

        <!-- spring依赖 -->


        <dependency>

            <groupId>org.springframework</groupId>

            <artifactId>spring-jdbc</artifactId>

            <version>4.3.24.RELEASE</version>

        </dependency>


        <dependency>

            <groupId>org.springframework</groupId>

            <artifactId>spring-context</artifactId>

            <version>4.3.24.RELEASE</version>

        </dependency>



        <dependency>

            <groupId>com.baomidou</groupId>

            <artifactId>mybatis-plus</artifactId>

            <version>2.3.3</version>

        </dependency>



        <dependency>

            <groupId>mysql</groupId>

            <artifactId>mysql-connector-java</artifactId>

            <version>5.1.47</version>

        </dependency>


    </dependencies>


    <!-- 只有配置了build标签里面的内容,配置后都需要强制更新项目 -->

    <build>

        <plugins>

            <plugin>

                <groupId>org.apache.maven.plugins</groupId>

                <artifactId>maven-compiler-plugin</artifactId>

                <version>3.8.1</version>

                <configuration>

                    <!-- 设置编码 -->

                    <encoding>UTF-8</encoding>

                    <!-- JDK版本 -->

                    <source>1.8</source>

                    <target>1.8</target>

                </configuration>

            </plugin>

            <!-- 安装install命令的时候跳过单元测试 -->


            <plugin>

                <groupId>org.apache.maven.plugins</groupId>

                <artifactId>maven-surefire-plugin</artifactId>

                <version>2.22.2</version>

                <configuration>

                    <skipTests>true</skipTests>

                </configuration>

            </plugin>

        </plugins>

    </build>

</project>


[if !supportLists]2.3.2. [endif]第二部分:配置整合部分

整合MybatisPlus与Spring的配置。创建一个spirng-data.xml配置


<?xmlversion="1.0"encoding="UTF-8"?>

<beansxmlns="http://www.springframework.org/schema/beans"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xmlns:context="http://www.springframework.org/schema/context"

    xmlns:tx="http://www.springframework.org/schema/tx"

    xsi:schemaLocation="http://www.springframework.org/schema/beans

  http://www.springframework.org/schema/beans/spring-beans.xsd

        http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context-4.3.xsd

        http://www.springframework.org/schema/tx  http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">


     <!-- 第一步:配置数据源 -->

     <beanname="dataSource"class="com.alibaba.druid.pool.DruidDataSource">

       <propertyname="driverClassName"value="com.mysql.jdbc.Driver"></property>

       <propertyname="url"value="jdbc:mysql://localhost:3306/mybatis-plus"></property>

       <propertyname="username"value="root"></property>

       <propertyname="password"value="123456"></property>

       <!-- 最大激活的连接数 -->

       <propertyname="maxActive"value="10"></property>

       <!-- 最大空闲连接数据 -->


  -->

       <!-- 超时毫秒数 -->

       <propertyname="maxWait"value="30000"></property>

     </bean>

     <!-- 第二步:获得会话工厂 -->

     <beanname="sqlSessionFactory"class="com.baomidou.mybatisplus.spring.MybatisSqlSessionFactoryBean">

       <!-- 指定数据源 -->

       <propertyname="dataSource"ref="dataSource"></property>

     </bean>


     <!-- 第三步:扫描动态映射对象到Spring容器 -->

     <beanclass="org.mybatis.spring.mapper.MapperScannerConfigurer">

       <!-- 指定会话工厂 -->

       <propertyname="sqlSessionFactoryBeanName"value="sqlSessionFactory"></property>

       <!-- 指定扫描的映射包 -->

       <propertyname="basePackage"value="org.chu.mybatisplus.mapper"></property>

     </bean>


     <!-- 第四步:配置事务代理 -->

     <beanname="tx"class="org.springframework.jdbc.datasource.DataSourceTransactionManager">

       <propertyname="dataSource"ref="dataSource"></property>

     </bean>

     <tx:annotation-driventransaction-manager="tx"/>

</beans>


[if !supportLists]2.3.3. [endif]第三部分:实现操作功能

说明:完成实验MybatisPlus对数据库增删改查。


[if !supportLists]2.3.3.1.           [endif]第一步:编写POJO

说明:使用Mybatis-Plus不使用xml文件,而是基于一组注解来解决实体类数据库表映射问题。


@TableName(value="tb_user")指定对应的表,表名和类名一致时,可以省略value属性。

@TableId指定表的主键。Value属性指定表的主键字段,和属性名一致时,可以省略。Type指定主键的增长策略。

@TableField指定类的属性映射的表字段,名称一致时可以省略该注解。


package org.chu.mybatisplus.pojo;


import  com.baomidou.mybatisplus.annotations.TableField;

import  com.baomidou.mybatisplus.annotations.TableId;

import  com.baomidou.mybatisplus.annotations.TableName;

import  com.baomidou.mybatisplus.enums.IdType;


@TableName(value="tb_user")

public class User {


   /*--


  AUTO->`0`("数据库ID自增")


  INPUT->`1`(用户输入ID")


  ID_WORKER->`2`("全局唯一ID")


  UUID->`3`("全局唯一ID")


  NONE-> 4 ("不需要ID")

   --*/

    @TableId(value="id",type=IdType.AUTO)

    private Long id;//BIGINT(20) NOT NULL AUTO_INCREMENT COMMENT '主键ID',

    //如果属性名与数据库表的字段名相同可以不写

    @TableField(value="name")

    private String name;//VARCHAR(30) NULL DEFAULT NULL

  COMMENT '姓名',

    @TableField(value="age")

    private Integer age;//INT(11) NULL DEFAULT NULL

  COMMENT '年龄',

    @TableField(value="email")

    private String email;//VARCHAR(50)

  NULL DEFAULT NULL COMMENT '邮箱',


  //补全get/set方法   

}



[if !supportLists]2.3.3.2.           [endif]第二步:编写Mapper接口

package org.chu.mybatisplus.mapper;

import org.chu.mybatisplus.pojo.User;

import  com.baomidou.mybatisplus.mapper.BaseMapper;

public interface UserMapper extends BaseMapper<User> {


}

[if !supportLists]2.3.3.3.           [endif]第三步:测试增删改查

package org.chu.test.mapper;

import java.util.List;


import org.chu.mybatisplus.mapper.UserMapper;

import org.chu.mybatisplus.pojo.User;

import org.junit.Test;

import org.junit.runner.RunWith;

import  org.springframework.beans.factory.annotation.Autowired;

import  org.springframework.test.context.ContextConfiguration;

import  org.springframework.test.context.junit4.SpringJUnit4ClassRunner;


import  com.baomidou.mybatisplus.mapper.EntityWrapper;

importcom.baomidou.mybatisplus.mapper.Wrapper;

//注意事项:Maven的单元测试包必须放置测试源码包里面

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration(locations="classpath:spring-data.xml")

public class UserMapperTest {


    @Autowired

    private UserMapper userMapper;


    @Test

    public void insert() {

        try {

            Useruser=new User();

            user.setName("wangwu");

            user.setAge(20);

            user.setEmail("wangwu@163.com");

            Integerinsert = userMapper.insert(user);

            System.out.println(insert);

        }catch (Exception e) {

            // TODO Auto-generated catch block

            e.printStackTrace();

        }

    }


    @Test

    public void deleteById() {

        try {

            Integercount = userMapper.deleteById(1L);

            System.out.println(count);

        }catch (Exception e) {

            // TODO Auto-generated catch block

            e.printStackTrace();

        }

    }


    @Test

    public void deleteByCondition() {

        try {

            //设置条件

            EntityWrapperwrapper=new EntityWrapper<>();

            wrapper.like("name", "%wang%");

            Integercount = userMapper.delete(wrapper);

            System.out.println(count);

        }catch (Exception e) {

            e.printStackTrace();

        }

    }


    @Test

    public void update() {

        Useruser=new  User();

        user.setName("wangwu");

        user.setEmail("wangwu@163.com");

        user.setId(2L);

        userMapper.updateById(user);


    }


    @Test

    public void findAll() {

        Listusers = userMapper.selectList(null);

        for (User user : users) {

            System.out.println(user.getName());

        }

    }


}



[if !supportLists]3. [endif]常用配置

[if !supportLists]3.1.  [endif]实体类全局配置

如果在配置文件指定实体类的全局配置,那么可以不需要再配置实体类的关联注解。

--配置文件spring-data.xml的修改

   <!-- 第二步:获得会话工厂 -->

     <beanname="sqlSessionFactory"class="com.baomidou.mybatisplus.spring.MybatisSqlSessionFactoryBean">

       <!-- 指定数据源 -->

       <propertyname="dataSource"ref="dataSource"></property>

  "globalConfig">

  "com.baomidou.mybatisplus.entity.GlobalConfiguration">




  AUTO->`0`("数据库ID自增")


  INPUT->`1`(用户输入ID")


  ID_WORKER->`2`("全局唯一ID")


  UUID->`3`("全局唯一ID")

         -->


  "idType"value="0">




  "tablePrefix"value="tb_">



       </property>

     </bean>

--实体类就可以去掉关联的注解了

package org.chu.mybatisplus.pojo;

public class User {

    private Long id;

    private String name;

    private Integer age;

    private String email;

    //补全get、set方法

}


[if !supportLists]3.2.  [endif]插件配置

Mybatis默认情况下,是不支持物理分页的。默认提供的RowBounds这个分页是逻辑分页来的。


所谓的逻辑分页,就是将数据库里面的数据全部查询出来后,在根据设置的参数返回对应的记录。(分页是在程序的内存中完成)。【表数据过多时,会溢出】


所谓的物理分页,就是根据条件限制,返回指定的记录。(分页在数据库里面已经完成)


MybatisPlus是默认使用RowBounds对象是支持物理分页的。但是需要通过配置Mybatis插件来开启。



配置代码

     <!-- 第二步:获得会话工厂 -->

     <beanname="sqlSessionFactory"class="com.baomidou.mybatisplus.spring.MybatisSqlSessionFactoryBean">

       <!-- 指定数据源 -->

       <propertyname="dataSource"ref="dataSource"></property>

       <!-- 全局实体类配置 -->

       <propertyname="globalConfig">

          <beanclass="com.baomidou.mybatisplus.entity.GlobalConfiguration">

            <!--


  AUTO->`0`("数据库ID自增")


  INPUT->`1`(用户输入ID")


  ID_WORKER->`2`("全局唯一ID")


  UUID->`3`("全局唯一ID")

         -->

            <propertyname="idType"value="0"></property>

            <!-- 实体类名与表名的关联规则是,忽略前缀 -->

            <propertyname="tablePrefix"value="tb_"></property>

          </bean>

       </property>

       <!-- 配置插件 -->

       "plugins">


 




  "com.baomidou.mybatisplus.plugins.PaginationInterceptor">






  "dialectClazz"value="com.baomidou.mybatisplus.plugins.pagination.dialects.MySqlDialect">






  "com.baomidou.mybatisplus.plugins.PerformanceInterceptor">


  "format"value="true">







     </bean>


[if !supportLists]3.3.  [endif]自定义SQL语句支持

--实现代码

package org.chu.mybatisplus.mapper;

import java.util.List;

import  org.apache.ibatis.annotations.Select;

import org.chu.mybatisplus.pojo.User;

import  com.baomidou.mybatisplus.mapper.BaseMapper;

public interface UserMapper extends BaseMapper<User> {

    @Select(value="select * from tb_user")

    ListfindAll();

}

--测试代码

package org.chu.test.mapper;

import java.util.List;


import  org.chu.mybatisplus.mapper.UserMapper;

import org.chu.mybatisplus.pojo.User;

import org.junit.Test;

import org.junit.runner.RunWith;

import  org.springframework.beans.factory.annotation.Autowired;

import  org.springframework.test.context.ContextConfiguration;

import  org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

//注意事项:Maven的单元测试包必须放置测试源码包里面

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration(locations="classpath:spring-data.xml")

public class UserMapperTest {

    @Autowired

    private UserMapper userMapper;

    @Test

    public void findAll() {


        try {

            Listusers = userMapper.findAll();

            for (User user : users) {

                System.out.println(user.getName());

            }

        }catch (Exception e) {

            e.printStackTrace();

        }

    }

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容

  • 对于java中的思考的方向,1必须要看前端的页面,对于前端的页面基本的逻辑,如果能理解最好,不理解也要知道几点。 ...
    神尤鲁道夫阅读 802评论 0 0
  • 【今天感悟】需要事务管理和aop切面编程联合组成事务。 导入依赖<dependency><groupId>org....
    海老山川阅读 154评论 0 0
  • 聊聊-生活这回事儿 Monday 2019.1.7 2018年末,一篇名为《镜头下的2018:万般滋味都是生活》的...
    趣读书吧阅读 1,406评论 0 0
  • 窗外,雨,淅沥淅沥,伴着初春乍暖还寒的风肆意地扬洒,不大,但绵绵,如雾般笼罩了丽华景苑的花草树木、错落有致的...
    委子阅读 801评论 9 20
  • 1.谈写作 写作对我来说,是一个码文字的游戏,它不过服从我内心的想法,把它一点点地演绎出来而已,放飞一下自己的心情...
    雯妈ygtw阅读 267评论 3 8