MybatisGeneratorUtils.java 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. //package com.bizmatics.controller.web;
  2. //
  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. //
  10. //import java.io.File;
  11. //import java.util.ArrayList;
  12. //import java.util.List;
  13. //
  14. ///**
  15. // * @author yq
  16. // * @date 2021/7/6 11:42
  17. // */
  18. //public class MybatisGeneratorUtils {
  19. // public static void main(String[] args) {
  20. // //修改成自己的模块名称
  21. // String[] models = {"test-controller", "test-service", "test-model", "test-persistence"};
  22. // for (String model : models) {
  23. // shell(model);
  24. // }
  25. // }
  26. //
  27. // private static void shell(String model) {
  28. //
  29. // AutoGenerator mpg = new AutoGenerator();
  30. // //1、全局配置
  31. // GlobalConfig gc = new GlobalConfig();
  32. // File file = new File(model);
  33. // String path = file.getAbsolutePath();
  34. // gc.setOutputDir(path + "/src/main/java"); //生成路径(一般都是生成在此项目的src/main/java下面)
  35. // //修改为自己的名字
  36. // gc.setAuthor("ya"); //设置作者
  37. // gc.setOpen(false);
  38. // gc.setFileOverride(true); //第二次生成会把第一次生成的覆盖掉
  39. // gc.setServiceName("%sService"); //生成的service接口名字首字母是否为I,这样设置就没有
  40. // gc.setBaseResultMap(true); //生成resultMap
  41. // mpg.setGlobalConfig(gc);
  42. //
  43. // //2、数据源配置
  44. // //修改数据源
  45. // DataSourceConfig dsc = new DataSourceConfig();
  46. // dsc.setUrl("jdbc:mysql://localhost:3306/test?useUnicode=true&serverTimezone=GMT&useSSL=false&characterEncoding=utf8");
  47. // dsc.setDriverName("com.mysql.jdbc.Driver");
  48. // dsc.setUsername("root");
  49. // dsc.setPassword(null);
  50. // mpg.setDataSource(dsc);
  51. //
  52. // // 3、包配置
  53. // PackageConfig pc = new PackageConfig();
  54. // pc.setParent("com.bizmatics");
  55. // pc.setController("controller.web");
  56. // pc.setEntity("model");
  57. // pc.setMapper("persistence.mapper");
  58. // pc.setService("service");
  59. // pc.setServiceImpl("service.impl");
  60. // //pc.setModuleName("test");
  61. // mpg.setPackageInfo(pc);
  62. //
  63. // // 4、策略配置
  64. // StrategyConfig strategy = new StrategyConfig();
  65. // strategy.setNaming(NamingStrategy.underline_to_camel);
  66. // strategy.setColumnNaming(NamingStrategy.underline_to_camel);
  67. // strategy.setSuperMapperClass("com.bizmatics.common.mvc.base.CrudMapper");
  68. // strategy.setSuperServiceClass("com.bizmatics.common.mvc.base.CrudService");
  69. // strategy.setSuperServiceImplClass("com.bizmatics.common.mvc.base.AbstractCrudService");
  70. // // strategy.setTablePrefix("t_"); // 表名前缀
  71. // strategy.setEntityLombokModel(true); //使用lombok
  72. // //修改自己想要生成的表
  73. // strategy.setInclude("test"); // 逆向工程使用的表 如果要生成多个,这里可以传入String[]
  74. // mpg.setStrategy(strategy);
  75. //
  76. // // 关闭默认 xml 生成,调整生成 至 根目录
  77. // //修改对应的模块名称
  78. // TemplateConfig tc = new TemplateConfig();
  79. // if ("test-persistence".equals(model)) {
  80. // tc.setController(null);
  81. // tc.setEntity(null);
  82. // tc.setService(null);
  83. // tc.setServiceImpl(null);
  84. // // 自定义配置
  85. // InjectionConfig cfg = new InjectionConfig() {
  86. // @Override
  87. // public void initMap() {
  88. // // to do nothing
  89. // }
  90. // };
  91. // //如果模板引擎是 velocity
  92. // String templatePath = "/templates/mapper.xml.vm";
  93. // // 自定义输出配置
  94. // List<FileOutConfig> focList = new ArrayList<>();
  95. // // 自定义配置会被优先输出
  96. // focList.add(new FileOutConfig(templatePath) {
  97. // @Override
  98. // public String outputFile(TableInfo tableInfo) {
  99. // // 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!!
  100. // return path + "/src/main/resources/mapper/mysql/" + "/"
  101. // + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML;
  102. // }
  103. // });
  104. // cfg.setFileOutConfigList(focList);
  105. // mpg.setCfg(cfg);
  106. // tc.setXml(null);
  107. // } else if ("test-model".equals(model)) {
  108. // tc.setController(null);
  109. // tc.setService(null);
  110. // tc.setServiceImpl(null);
  111. // tc.setMapper(null);
  112. // tc.setXml(null);
  113. // } else if ("test-service".equals(model)) {
  114. // tc.setController(null);
  115. // tc.setMapper(null);
  116. // tc.setXml(null);
  117. // tc.setEntity(null);
  118. // } else if ("test-controller".equals(model)) {
  119. // tc.setMapper(null);
  120. // tc.setXml(null);
  121. // tc.setService(null);
  122. // tc.setServiceImpl(null);
  123. // tc.setEntity(null);
  124. // }
  125. // mpg.setTemplate(tc);
  126. // //5、执行
  127. // mpg.execute();
  128. // }
  129. //}