Mybatis Generator Plus

授权协议 Apache
开发语言 Java
所属分类 程序开发、 ORM/持久层框架
软件类型 开源软件
地区 国产
投 递 者 施赞
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

1.介绍:

MyBatis generator plus 基于mybatis-generator-core v.1.3.2 扩展,增加如下主要特性:

1.生成支持Oracle、Mysql、Sqlserver分页查询的代码:

//分页查询demo
OperateLogExample relationshipsExample = new OperateLogExample();
relationshipsExample.setPagination(0L,10L);
List operateLogList = operateLogMapper.selectByExample(relationshipsExample);

2.生成支持Oracle、Mysql、Sqlserver批量插入的代码:

//批量插入demo
List operateLogList = new ArrayList<>();
for (int i = 0; i < 5; i++) {
    OperateLog operateLog = new OperateLog.Builder()
        .action("insertBatch_test"+i)
        .build();
    operateLogList.add(operateLog);
}
operateLogMapper.insertBatch(operateLogList);

3.Model类支持Builder模式创建,示例代码:

User user = new User.Builder()
    .userName("insert_test")
    .creatTime(new Date())
    .updateTime(new Date())
    .build();

4.支持Oracle使用SEQUENCE实现自增主键:
需要建立表主键对应的SEQUENCE,并且SEQUENCE的名称作出了要求:格式为table_name_SEQUENCE

5.支持Mapper接口设置数据源schema,可用于分库业务;
demo.mapper.ooc.UserVisitLogMapper.DATA_SOURCE_NAME

6.针对MySQL下分页大偏移量时慢查询优化List selectByBigOffset(DomainExample example);

7.乐观锁支持int updateByOptimisticLock(Domain record);

 

2.使用方式

方式一: 配置maven插件生成代码【推荐】

pom里plugin配置如下:


  org.ihansen.mbp
  mybatis-generator-plus-maven-plugin
  1.4
  
    true
    true
    tool/mbp/MybatisGeneratorCfg.xml
  

供参考的MBP配置文件: MybatisGeneratorCfg.xml
终端运行如下命令,生成自动代码:

mvn org.ihansen.mbp:mybatis-generator-plus-maven-plugin:1.4:generate

方式二:运行可执行jar文件

包含运行依赖包的可独立执行jar文件:mybatis-generator-plus-jar-with-dependencies.jar
供参考的MBP配置文件: MybatisGeneratorCfg.xml
使用如下命令执行即可生成自动文件:

java -jar mybatis-generator-plus-jar-with-dependencies-1.4.jar -configfile MybatisGeneratorCfg.xml -overwrite

方式三:main方法运行

本工具的使用方式和原生的MyBatis generator使用方式一致,兼容原生版本。maven 坐标:


  org.ihansen.mbp
  mybatis-generator-plus
  1.4
  test

生成文件的示例入口: test/demo.MBPMain

  • 简介 之前有文章Mybatis-Generator使用,现在体验了Mybatis-Plus-Generator,真心觉得有了它开发效率提高太多了,用起来是真的爽,爽! 参考: https://baomidou.com/pages/779a6e/ https://blog.csdn.net/qq_20185737/article/details/121456598 代码 注意 适用版本:mybati

  • 序言 基于mybatis-plus代码生成器,不需要配置xml,操作简单,只需要执行main方法即可 本文使用的mybatis-plus-generator版本为3.5.2 代码生成器mybatis-plus-generator介绍 mybatis-plus-generator是 MyBatis-Plus(简称MP)的代码生成器,通过 AutoGenerator (新版是FastAutoGener

  • 参见:https://www.cnblogs.com/qixingchao/p/14648379.html https://blog.csdn.net/qwe303137085/article/details/97002023?spm=1001.2014.3001.5506 1、介绍 Mybatis Mybatis 是操作数据库的框架:提供一种Mapper类,支持用Java代码对数据库进行增删改查

  • 引入依赖 <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.3.2</version> </dependency> <dependency> <groupId>com.baomidou</groupI

相关阅读

相关文章

相关问答

相关文档