当前位置:   article > 正文

关于mybatis-plus-generator的简单使用

mybatis-plus-generator

在springboot项目中集成mybatis-plus是很方便开发的,最近看了一下plus的文档,简单用一下它的代码生成器,首先在一个简单的springboot项目中加入如下依赖

  1. <!-- 引入mybatis-plus依赖 -->
  2. <dependency>
  3. <groupId>com.baomidou</groupId>
  4. <artifactId>mybatis-plus-boot-starter</artifactId>
  5. <version>3.1.2</version>
  6. </dependency>
  7. <!-- 引入mybatis-plus-generator依赖 -->
  8. <dependency>
  9. <groupId>com.baomidou</groupId>
  10. <artifactId>mybatis-plus-generator</artifactId>
  11. <version>3.3.2</version>
  12. </dependency>
  13. <!-- 引入freemarker依赖 -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-freemarker</artifactId>
  17. </dependency>
  18. <!-- 引入mysql依赖 -->
  19. <dependency>
  20. <groupId>mysql</groupId>
  21. <artifactId>mysql-connector-java</artifactId>
  22. <version>5.1.45</version>
  23. <scope>runtime</scope>
  24. </dependency>
  25. <!--lombok-->
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. <optional>true</optional>
  30. </dependency>

我这边呢习惯把mapper文件放在java源码路径下,而不是放在默认的resources目录下,项目启动有导致mapper注入不了,所以还得在pom的<build></build>标签之中加入如下配置,并在启动类上加上mapper扫描路径

  1. <resources>
  2. <resource>
  3. <directory>src/main/java</directory>
  4. <includes>
  5. <include>**/*.xml</include>
  6. </includes>
  7. <filtering>false</filtering>
  8. </resource>
  9. <resource>
  10. <directory>src/main/resources</directory>
  11. <includes>
  12. <include>**/*.properties</include>
  13. <include>**/*.xml</include>
  14. <include>**/*.ftl</include>
  15. </includes>
  16. <filtering>false</filtering>
  17. </resource>
  18. </resources>
  1. @SpringBootApplication
  2. @MapperScan(basePackages = {"com.fengyun.mallmanage"})
  3. public class MallManageSystemApplication {
  4. public static void main(String[] args) {
  5. SpringApplication.run(MallManageSystemApplication.class, args);
  6. }
  7. }

基本依赖和配置结束了,我参考了plus的官方文档,根据自己的需求稍微修改了一下它的生成器代码,官网地址

代码生成器 | MyBatis-Plus

  1. /**
  2. * mybatis-plus代码生成器,生成实体,mapper,mapper.xml,service,serviceImpl,controller
  3. * 演示例子,执行 main 方法控制台输入表名回车自动生成对应项目目录中(目录要需要自行修改)
  4. */
  5. public class CodeGenerator {
  6. /**
  7. * <p>
  8. * 读取控制台内容
  9. * </p>
  10. */
  11. public static String scanner(String tip) {
  12. Scanner scanner = new Scanner(System.in);
  13. StringBuilder help = new StringBuilder();
  14. help.append("请输入" + tip + ":");
  15. System.out.println(help.toString());
  16. if (scanner.hasNext()) {
  17. String ipt = scanner.next();
  18. if (StringUtils.isNotEmpty(ipt)) {
  19. return ipt;
  20. }
  21. }
  22. throw new MybatisPlusException("请输入正确的" + tip + "!");
  23. }
  24. public static void main(String[] args) {
  25. // 代码生成器
  26. AutoGenerator mpg = new AutoGenerator();
  27. // 全局配置
  28. GlobalConfig gc = new GlobalConfig();
  29. String projectPath = System.getProperty("user.dir");
  30. gc.setOutputDir(projectPath + "/src/main/java");
  31. gc.setAuthor("YuanXing");
  32. //是否打开输出的目录,默认true
  33. gc.setOpen(false);
  34. //覆盖已有的文件,默认false(第一次生成时放开)
  35. // gc.setFileOverride(true);
  36. gc.setBaseResultMap(true);
  37. gc.setBaseColumnList(true);
  38. // 设置日期类型为Date(若不设置时间类型都会变成LocalDateTime部分连接池例如druid是无法识别的)
  39. gc.setDateType(DateType.ONLY_DATE);
  40. mpg.setGlobalConfig(gc);
  41. // 数据源配置
  42. DataSourceConfig dsc = new DataSourceConfig();
  43. dsc.setUrl("jdbc:mysql://localhost:3306/malldata-dev?useUnicode=true&characterEncoding=UTF-8&useSSL=false");
  44. dsc.setDriverName("com.mysql.jdbc.Driver");
  45. dsc.setUsername("root");
  46. dsc.setPassword("密码");
  47. mpg.setDataSource(dsc);
  48. // 包配置
  49. PackageConfig pc = new PackageConfig();
  50. // pc.setModuleName(scanner("模块名"));
  51. pc.setParent("com.fengyun.mallmanage");
  52. //自定义实体包名(不同的模块自己手动修改)
  53. pc.setEntity("mapper.goods.entity");
  54. //自定义mapper包名(不同的模块自己手动修改)
  55. pc.setMapper("mapper.goods");
  56. //自定义mapper.xml包名(不同的模块自己手动修改)
  57. pc.setXml("mapper.goods");
  58. //自定义service包名(不同的模块自己手动修改)
  59. pc.setService("service.goods");
  60. //自定义serviceImpl包名(不同的模块自己手动修改)
  61. pc.setServiceImpl("service.goods.impl");
  62. //自定义controller包名(不同的模块自己手动修改)
  63. pc.setController("controller.goods");
  64. mpg.setPackageInfo(pc);
  65. // 自定义配置
  66. InjectionConfig cfg = new InjectionConfig() {
  67. @Override
  68. public void initMap() {
  69. // to do nothing
  70. }
  71. };
  72. // 如果模板引擎是 freemarker
  73. String xmlPath = "/templates/mapper.xml.ftl";
  74. // 自定义输出配置
  75. List<FileOutConfig> focList = new ArrayList<>();
  76. // 自定义配置会被优先输出
  77. focList.add(new FileOutConfig(xmlPath) {
  78. @Override
  79. public String outputFile(TableInfo tableInfo) {
  80. // 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!!
  81. return projectPath + "/src/main/java/com/fengyun/mallmanage/mapper/goods"
  82. + "/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML;
  83. }
  84. });
  85. cfg.setFileOutConfigList(focList);
  86. mpg.setCfg(cfg);
  87. cfg.setFileOutConfigList(focList);
  88. mpg.setCfg(cfg);
  89. // 配置模板
  90. TemplateConfig templateConfig = new TemplateConfig();
  91. templateConfig.setXml(null);
  92. mpg.setTemplate(templateConfig);
  93. // 策略配置
  94. StrategyConfig strategy = new StrategyConfig();
  95. strategy.setNaming(NamingStrategy.underline_to_camel);
  96. strategy.setColumnNaming(NamingStrategy.underline_to_camel);
  97. //是否为lombok模型,默认为false
  98. strategy.setEntityLombokModel(true);
  99. //前后端分离时可开启
  100. // strategy.setRestControllerStyle(true);
  101. strategy.setInclude(scanner("表名,多个英文逗号分割").split(","));
  102. //RequestMapping驼峰转连字符
  103. // strategy.setControllerMappingHyphenStyle(true);
  104. //生成实体时生成生成数据库字段注解
  105. strategy.setEntityTableFieldAnnotationEnable(true);
  106. mpg.setStrategy(strategy);
  107. mpg.setTemplateEngine(new FreemarkerTemplateEngine());
  108. mpg.execute();
  109. }
  110. }

然后运行即可

需要注意的是由于我在代码生成器代码中包配置的时候注释掉了输入模块名(即这一段pc.setModuleName(scanner("模块名"));),所以会导致controller中的RequestMapping的路径有两个//表名的驼峰命名,假设输入模块名的话RequestMapping的路径就会是/模块名/表名的驼峰命名,但是这样的话生成的类的包就不是我现在这样的了,这个看自己的需求吧,具体可以看一下生成包的源码

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/434532
推荐阅读
相关标签
  

闽ICP备14008679号