微信搜索superit|邀请体验:大数据, 数据管理、OLAP分析与可视化平台 | 赞助作者:赞助作者

Mybatis-Plus代码生成器

java aide_941 37℃

https://mp.baomidou.com/guide/generator.html

 

目前公司所做项目的各模块的dao层接口有大量数据库查询的方法,大部分都是通用的CURD,所以在在网上找到了Mybatis-Plus这个插件,该插件具有通用CURD接口,而且具有前后端代码生成器的功能,这次主要介绍后端代码生成器的使用。

1.Mybatis-Plus(简称MP)是一个 Mybatis 的增强工具,在 Mybatis 的基础上只做增强不做改变,为简化开发、提高效率而生。
码云地址:https://gitee.com/baomidou/mybatis-plus
githb地址:https://github.com/baomidou/mybatis-plus
2.使用方法
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
<version>maven 官方最新版本为准</version>
</dependency>
引入jar包后开始编写代码生成器示例文件

这个我使用了读取properties的方式来生成代码

properties示例如下
Mybatis-Plus.properties

#此处为本项目src所在路径(代码生成器输出路径)
OutputDir=D:/XXX/src
#数据库表名(此处切不可为空,如果为空,则默认读取数据库的所有表名)
tableName=XXX
#生成代码类名类名
className=XXX
#设置作者
author=XXX
#
#
#正常情况下,下面的代码无需修改!!!!!!!!!!
#
#
#自定义包路径
parent=com.XXX
#数据库地址
url=jdbc:mysql://127.0.0.1:3306/XXX?useUnicode=true&characterEncoding=utf-8
#数据库用户名
userName=root
#数据库密码
passWord=XXX

 


 

Mybatis-Plus-AutoGenerator 最详细使用方法!

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/m0_37842716/article/details/86606696

     AutoGenerator 是 MyBatis-Plus 的代码生成器,通过 AutoGenerator 可以快速生成 Entity、Mapper、Mapper XML、Service、Controller 等各个模块的代码,极大的提升了开发效率。可以通过模版等一系列的方式来生成代码,⚠️这个比Mybatis-Generator的更加强大,纯java代码。。官方地址:https://mp.baomidou.com/guide/generator.html

  1. package com.cikers.ps;
  2. import com.baomidou.mybatisplus.core.exceptions.MybatisPlusException;
  3. import com.baomidou.mybatisplus.core.toolkit.StringPool;
  4. import com.baomidou.mybatisplus.generator.AutoGenerator;
  5. import com.baomidou.mybatisplus.generator.InjectionConfig;
  6. import com.baomidou.mybatisplus.generator.config.*;
  7. import com.baomidou.mybatisplus.generator.config.po.TableInfo;
  8. import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;
  9. import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine;
  10. import org.apache.commons.lang3.StringUtils;
  11. import java.util.ArrayList;
  12. import java.util.List;
  13. import java.util.Scanner;
  14. public class MysqlGenerator {
  15. public static String scanner(String tip) {
  16. Scanner scanner = new Scanner(System.in);
  17. StringBuilder help = new StringBuilder();
  18. help.append(“请输入” + tip + “:”);
  19. System.out.println(help.toString());
  20. if (scanner.hasNext()) {
  21. String ipt = scanner.next();
  22. if (StringUtils.isNotEmpty(ipt)) {
  23. return ipt;
  24. }
  25. }
  26. throw new MybatisPlusException(“请输入正确的” + tip + “!”);
  27. }
  28. public static void main(String[] args) {
  29. // 代码生成器
  30. AutoGenerator mpg = new AutoGenerator();
  31. // 全局配置
  32. GlobalConfig gc = new GlobalConfig();
  33. String projectPath = “/Users/syk/Documents/*/*/”;
  34. gc.setOutputDir(projectPath + “/src/main/java”);
  35. gc.setAuthor(“syk”);
  36. gc.setOpen(false);
  37. gc.setBaseResultMap(true);
  38. gc.setBaseColumnList(true);
  39. //gc.setControllerName(“SSSSScontroller”);
  40. // 是否覆盖已有文件
  41. gc.setFileOverride(false);
  42. mpg.setGlobalConfig(gc);
  43. // 数据源配置
  44. DataSourceConfig dsc = new DataSourceConfig();
  45. dsc.setUrl(“jdbc:mysql://******/newstack_db?useUnicode=true&characterEncoding=UTF-8”);
  46. // dsc.setSchemaName(“public”);
  47. dsc.setDriverName(“com.mysql.jdbc.Driver”);
  48. dsc.setUsername(“root”);
  49. dsc.setPassword(“password”);
  50. mpg.setDataSource(dsc);
  51. // 包配置
  52. PackageConfig pc = new PackageConfig();
  53. //pc.setModuleName(scanner(“模块名”));
  54. pc.setParent(null);
  55. // 这个地址是生成的配置文件的包路径
  56. pc.setEntity(“com.cikers.ps.model.entity”);
  57. //pc.setController(“com.cikers.ps.controller”);
  58. pc.setMapper(“com.cikers.ps.mapper”);
  59. mpg.setPackageInfo(pc);
  60. // 自定义配置
  61. InjectionConfig cfg = new InjectionConfig() {
  62. @Override
  63. public void initMap() {
  64. // to do nothing
  65. }
  66. };
  67. // 如果模板引擎是 freemarker
  68. String templatePath = “/templates/mapper.xml.ftl”;
  69. // 如果模板引擎是 velocity
  70. //String templatePath = “/templates/mapper.xml.vm”;
  71. // 自定义输出配置
  72. List<FileOutConfig> focList = new ArrayList<>();
  73. // 自定义配置会被优先输出
  74. focList.add(new FileOutConfig(templatePath) {
  75. @Override
  76. public String outputFile(TableInfo tableInfo) {
  77. // 自定义输出文件名
  78. return projectPath + “/src/main/resources/mapper/entity”
  79. + “/” + tableInfo.getEntityName() + “Mapper” + StringPool.DOT_XML;
  80. }
  81. });
  82. cfg.setFileOutConfigList(focList);
  83. mpg.setCfg(cfg);
  84. // 配置模板
  85. TemplateConfig templateConfig = new TemplateConfig();
  86. // //配置自定义输出模板
  87. // 不需要其他的类型时,直接设置为null就不会成对应的模版了
  88. //templateConfig.setEntity(“…”);
  89. templateConfig.setService(null);
  90. templateConfig.setController(null);
  91. templateConfig.setServiceImpl(null);
  92. // 自定义模板配置,可以 copy 源码 mybatis-plus/src/main/resources/templates 下面内容修改,
  93. // 放置自己项目的 src/main/resources/templates 目录下, 默认名称一下可以不配置,也
  94. // 可以自定义模板名称 只要放到目录下,名字不变 就会采用这个模版 下面这句有没有无所谓
  95. // 模版去github上看地址:
  96. /**https://github.com/baomidou/mybatis-plus/tree/3.0/mybatis-plus-generator/src/main/resources/templates*/
  97. //templateConfig.setEntity(“/templates/entity.java”);
  98. templateConfig.setXml(null);
  99. mpg.setTemplate(templateConfig);
  100. // 策略配置
  101. StrategyConfig strategy = new StrategyConfig();
  102. strategy.setNaming(NamingStrategy.underline_to_camel);
  103. strategy.setColumnNaming(NamingStrategy.underline_to_camel);
  104. strategy.setSuperEntityClass(“com.cikers.ps.model.BaseEntity”);
  105. strategy.setSuperMapperClass(“com.cikers.ps.util.IMapper”);
  106. strategy.setEntityLombokModel(false);
  107. //strategy.setRestControllerStyle(false);
  108. //strategy.setSuperControllerClass(“com.cikers.ps.controller.MysqlController”);
  109. strategy.setInclude(scanner(“表名”));
  110. // 设置继承的父类字段
  111. strategy.setSuperEntityColumns(“id”,“modifiedBy”,“modifiedOn”,“createdBy”,“createdOn”);
  112. //strategy.setControllerMappingHyphenStyle(true);
  113. //strategy.setTablePrefix(pc.getModuleName() + “_”);
  114. mpg.setStrategy(strategy);
  115. mpg.setTemplateEngine(new FreemarkerTemplateEngine());
  116. mpg.execute();
  117. }
  118. }

其中需要的maven依赖

  1. <dependency>
  2. <groupId>com.baomidou</groupId>
  3. <artifactId>mybatis-plus-boot-starter</artifactId>
  4. <version>3.0-RELEASE</version>
  5. </dependency>
  6. <!– mp自动代码生成–>
  7. <dependency>
  8. <groupId>com.baomidou</groupId>
  9. <artifactId>mybatis-plus-generator</artifactId>
  10. <version>3.0.7.1</version>
  11. </dependency>
  12. <!– velocity 模板引擎, 默认 –>
  13. <dependency>
  14. <groupId>org.apache.velocity</groupId>
  15. <artifactId>velocity-engine-core</artifactId>
  16. <version>2.0</version>
  17. </dependency>
  18. <!– freemarker 模板引擎 –>
  19. <dependency>
  20. <groupId>org.freemarker</groupId>
  21. <artifactId>freemarker</artifactId>
  22. <version>2.3.23</version>
  23. </dependency>
  24. <!– beetl 模板引擎 –>
  25. <dependency>
  26. <groupId>com.ibeetl</groupId>
  27. <artifactId>beetl</artifactId>
  28. <version>2.2.5</version>
  29. </dependency>

运行输入表面就可以了!!!!

转载请注明:SuperIT » Mybatis-Plus代码生成器

喜欢 (0)or分享 (0)