Mybatis-Plus各功能使用教程

导读:本篇文章讲解 Mybatis-Plus各功能使用教程,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

目录

一、代码生成器的使用步骤

二、逻辑删除使用步骤

三、乐观锁的使用

四.分页功能使用步骤 

五.Wrapper条件构造器的使用

注:一切前提都是数据库已经配置好并且Mybatis-Plus依赖已经导入的前提下进行操作

一、代码生成器的使用步骤

1.引入代码生成器依赖

<!-- velocity 模板引擎, Mybatis Plus 代码生成器需要 -->
<dependency>
    <groupId>org.apache.velocity</groupId>
    <artifactId>velocity-engine-core</artifactId>
</dependency>

 2.配置代码生成器CodeGenerator

package com.atguigu.demo;

import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.generator.AutoGenerator;
import com.baomidou.mybatisplus.generator.config.DataSourceConfig;
import com.baomidou.mybatisplus.generator.config.GlobalConfig;
import com.baomidou.mybatisplus.generator.config.PackageConfig;
import com.baomidou.mybatisplus.generator.config.StrategyConfig;
import com.baomidou.mybatisplus.generator.config.rules.DateType;
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;
import org.junit.Test;

/**
 * @author
 * @since 2018/12/13
 */
public class CodeGenerator {

    @Test
    public void run() {

        // 1、创建代码生成器
        AutoGenerator mpg = new AutoGenerator();

        // 2、全局配置
        GlobalConfig gc = new GlobalConfig();
        //!代码生成的位置
        gc.setOutputDir("E:\\XIangMu\\guli\\guli_parent\\service\\service-edu" + "/src/main/java");
        gc.setAuthor("testjava");//作者
        gc.setOpen(false); //生成后是否打开资源管理器
        gc.setFileOverride(false); //重新生成时文件是否覆盖
        gc.setServiceName("%sService");	//去掉Service接口的首字母I
        //!主键策略,如果实体类中主键是整形用ID_WORKER,如果是字符型用ID_WORKER_STR
        gc.setIdType(IdType.ID_WORKER_STR);
        //!定义生成的实体类中日期类型
        gc.setDateType(DateType.ONLY_DATE);
        gc.setSwagger2(true);//开启Swagger2模式
        mpg.setGlobalConfig(gc);

        // 3、数据源配置
        DataSourceConfig dsc = new DataSourceConfig();
        dsc.setUrl("jdbc:mysql://localhost:3306/guli?serverTimezone=GMT%2B8");
        dsc.setDriverName("com.mysql.cj.jdbc.Driver");
        dsc.setUsername("root");
        dsc.setPassword("root");
        dsc.setDbType(DbType.MYSQL);
        mpg.setDataSource(dsc);

        // 4、包配置
        //!生成的各个包名
        PackageConfig pc = new PackageConfig();
        pc.setParent("com.atguigu");
        pc.setModuleName("service");
        pc.setController("controller");
        pc.setEntity("entity");
        pc.setService("service");
        pc.setMapper("mapper");
        mpg.setPackageInfo(pc);

        // 5、策略配置,对数据库的表生成实体类和mapper
        StrategyConfig strategy = new StrategyConfig();
        //!要映射的数据表
        strategy.setInclude("edu_teacher");
        strategy.setNaming(NamingStrategy.underline_to_camel);//数据库表映射到实体的命名策略
        //!生成实体类时去掉”_“
        strategy.setTablePrefix(pc.getModuleName() + "_");
        strategy.setColumnNaming(NamingStrategy.underline_to_camel);//数据库表字段映射到实体的命名策略
        strategy.setEntityLombokModel(true); //lombok 模型 @Accessors(chain = true) setter链式操作
        strategy.setRestControllerStyle(true); //restful api风格控制器
        strategy.setControllerMappingHyphenStyle(true); //url中驼峰转连字符
        mpg.setStrategy(strategy);

        // 6、执行
        mpg.execute();
    }
}

3.运行CodeGenerator类

如果生成失败,可能是

  • 有包未导入
  • 代码生成路径错误
  • 数据源配置有错误

二、逻辑删除使用步骤

1.配置类中配置逻辑删除插件

@Configuration
@MapperScan("com.atguigu.service.mapper")
public class EduConfig {
    //Mybatis-Plus逻辑删除插件
    @Bean
    public ISqlInjector sqlInjector() {
        return new LogicSqlInjector();
    }
}

2.在要进行逻辑删除的实体类属性上添加@TableLogic注解

    @ApiModelProperty(value = "逻辑删除 1(true)已删除, 0(false)未删除")
    @TableLogic
    private Boolean isDeleted;

三、乐观锁的使用

1.在配置类中配置乐观锁插件

  @Bean
    public OptimisticLockerInterceptor OptimisticLock(){
        return new OptimisticLockerInterceptor();
    }

2.在要添加乐观锁的实体类属性上添加@Version和@TableField(fill = FieldFill.INSERT)注解

TableField(fill = FieldFill.INSERT)表示每次进行插入操作时自动赋值

 @Version
 @TableField(fill = FieldFill.INSERT)
 private Integer version;

3.创建一个类实现MetaObjectHandler接口并注入容器,重写其方法

@Component
public class UserMapperImpl implements MetaObjectHandler {
    //mp执行插入操作,这个方法执行
    @Override
    public void insertFill(MetaObject metaObject) {
        this.setFieldValByName("createTime",new Date(),metaObject);
        this.setFieldValByName("updateTime",new Date(),metaObject);
        this.setFieldValByName("version",1,metaObject);
        this.setFieldValByName("deleted",0,metaObject);

    }

注意:乐观锁只有先执行select操作再修改才会生效

四.分页功能使用步骤 

1.在配置类中配置分类插件

   //分页插件
    @Bean
    public PaginationInterceptor paginationInterceptor() {
        return new PaginationInterceptor();
    }

2.创建page对象并使用方法

 Page<EduTeacher> teacherPage = new Page<>(current, limit);//new page对象
 teacherService.page(teacherPage,null);//把分页的所有数据封装到page中
        //调用page方法
        long total =               teacherPage.getTotal();//获取总记录数
        List<EduTeacher> records = teacherPage.getRecords();//获取当前页的数据集合
        long pages =               teacherPage.getPages();//获取总页数
        long current1 =            teacherPage.getCurrent();//获取当前的页码

五.Wrapper条件构造器的使用

Wrapper两大实现类分别是UpdateWrapper和QueryWrapper

条件:

ge、le:>、<                                                               gt、lt:>=、<=

between、notbetween:在或不在某个范围                like、notlike:包含或者不包含

OrderByDesc、OrderByAsc:升序或降序

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/116149.html

(0)
Java光头强的头像Java光头强

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!