|
|
@@ -0,0 +1,152 @@
|
|
|
+package com.storlead.centre;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.exceptions.MybatisPlusException;
|
|
|
+import com.baomidou.mybatisplus.generator.AutoGenerator;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.*;
|
|
|
+import com.baomidou.mybatisplus.generator.*;
|
|
|
+import com.baomidou.mybatisplus.generator.config.*;
|
|
|
+import com.baomidou.mybatisplus.generator.config.po.*;
|
|
|
+import com.baomidou.mybatisplus.generator.config.rules.*;
|
|
|
+import com.baomidou.mybatisplus.generator.engine.*;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Scanner;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @program: sp-project-system
|
|
|
+ * @description: 代码生成器
|
|
|
+ * @author: chenkq
|
|
|
+ * @create: 2021-09-09 15:15
|
|
|
+ */
|
|
|
+public class ChenkqGeneratorCodeConfig {
|
|
|
+
|
|
|
+ public static String scanner(String tip) {
|
|
|
+ Scanner scanner = new Scanner(System.in);
|
|
|
+ StringBuilder help = new StringBuilder();
|
|
|
+ help.append("请输入" + tip + ":");
|
|
|
+ System.out.println(help.toString());
|
|
|
+ if (scanner.hasNext()) {
|
|
|
+ String ipt = scanner.next();
|
|
|
+ if (StringUtils.isNotEmpty(ipt)) {
|
|
|
+ return ipt;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ throw new MybatisPlusException("请输入正确的" + tip + "!");
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void main(String[] args) {
|
|
|
+ // 代码生成器
|
|
|
+ AutoGenerator mpg = new AutoGenerator();
|
|
|
+ // 全局配置
|
|
|
+ GlobalConfig gc = new GlobalConfig();
|
|
|
+ String projectPath = System.getProperty("user.dir");
|
|
|
+ gc.setOutputDir(projectPath + "\\storlead-centre-service\\src\\main\\java");
|
|
|
+ gc.setAuthor("chenkq");
|
|
|
+ gc.setOpen(false);
|
|
|
+ //实体属性 Swagger2 注解
|
|
|
+ gc.setSwagger2(true);
|
|
|
+ // 不需要ActiveRecord特性的请改为false
|
|
|
+ gc.setActiveRecord(false);
|
|
|
+ // XML 二级缓存
|
|
|
+ gc.setEnableCache(false);
|
|
|
+ // XML ResultMap
|
|
|
+ gc.setBaseResultMap(true);
|
|
|
+ // XML columList
|
|
|
+ gc.setBaseColumnList(true);
|
|
|
+ // 自定义文件命名
|
|
|
+ gc.setEntityName("%sEntity");
|
|
|
+ gc.setServiceName("%sService");
|
|
|
+ mpg.setGlobalConfig(gc);
|
|
|
+ // 数据源配置
|
|
|
+ DataSourceConfig dsc = new DataSourceConfig();
|
|
|
+// dsc.setUrl("jdbc:mysql://192.168.1.93:39091/sp_sales_dev?useSSL=false&autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&noDatetimeStringSync=true&serverTimezone=Asia/Shanghai");
|
|
|
+ dsc.setUrl("jdbc:mysql://mysql.test.storlead.com:39091/sp_unified_service_test?useSSL=false&useUnicode=true&characterEncoding=utf8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true");
|
|
|
+ dsc.setDriverName("com.mysql.jdbc.Driver");
|
|
|
+ dsc.setUsername("root");
|
|
|
+ dsc.setPassword("rCgRgLjH99Xvg5BN");
|
|
|
+ mpg.setDataSource(dsc);
|
|
|
+ // 包配置
|
|
|
+ PackageConfig pc = new PackageConfig();
|
|
|
+// pc.setModuleName(scanner("模块名"));
|
|
|
+ pc.setParent("com.storlead.centre");
|
|
|
+ pc.setEntity("entity");
|
|
|
+ pc.setService("service");
|
|
|
+ pc.setServiceImpl("service.impl");
|
|
|
+// gc.setXmlName("mapper");
|
|
|
+ mpg.setPackageInfo(pc);
|
|
|
+
|
|
|
+ // 自定义配置
|
|
|
+ InjectionConfig cfg = new InjectionConfig() {
|
|
|
+ @Override
|
|
|
+ public void initMap() {
|
|
|
+
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ //如果模板引擎是 freemarker
|
|
|
+ String templatePath = "/templates/mapper.xml.ftl";
|
|
|
+ //如果模板引擎是 velocity
|
|
|
+ //String templatePath = "/templates/mapper.xml.vm";
|
|
|
+//
|
|
|
+// // 自定义输出配置
|
|
|
+ List<FileOutConfig> focList = new ArrayList<>();
|
|
|
+ //自定义配置会被优先输出
|
|
|
+ focList.add(new FileOutConfig(templatePath) {
|
|
|
+ @Override
|
|
|
+ public String outputFile(TableInfo tableInfo) {
|
|
|
+ // 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!!
|
|
|
+
|
|
|
+ String str = projectPath + "\\storlead-centre-service\\src\\main\\resources\\mapper\\" + tableInfo.getEntityName().replace("Entity","") + "Mapper" + StringPool.DOT_XML;
|
|
|
+ System.out.println("str = :" + str);
|
|
|
+ return str;
|
|
|
+ }
|
|
|
+ });
|
|
|
+// cfg.setFileCreate(new IFileCreate() {
|
|
|
+// @Override
|
|
|
+// public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) {
|
|
|
+// // 判断自定义文件夹是否需要创建
|
|
|
+// System.out.println("filePath = "+filePath);
|
|
|
+// checkDir(filePath);
|
|
|
+// return false;
|
|
|
+// }
|
|
|
+// });
|
|
|
+//
|
|
|
+ cfg.setFileOutConfigList(focList);
|
|
|
+ mpg.setCfg(cfg);
|
|
|
+
|
|
|
+ // 策略配置
|
|
|
+ StrategyConfig strategy = new StrategyConfig();
|
|
|
+ strategy.setNaming(NamingStrategy.underline_to_camel);
|
|
|
+ strategy.setColumnNaming(NamingStrategy.underline_to_camel);
|
|
|
+ strategy.setSuperEntityClass("com.baomidou.mybatisplus.extension.activerecord.Model");
|
|
|
+ strategy.setEntityLombokModel(true);
|
|
|
+ strategy.setRestControllerStyle(true);
|
|
|
+ // 表名生成策略
|
|
|
+ strategy.setNaming(NamingStrategy.underline_to_camel);
|
|
|
+ strategy.setColumnNaming(NamingStrategy.underline_to_camel);
|
|
|
+
|
|
|
+ // 公共父类
|
|
|
+ strategy.setSuperEntityClass("com.storlead.frame.mybatis.entity.SysBaseField");
|
|
|
+ // 写于父类中的公共字段
|
|
|
+ strategy.setSuperEntityColumns("create_by","update_by","create_time","update_time","is_delete","enabled","owner_by","sort");
|
|
|
+ strategy.setControllerMappingHyphenStyle(true);
|
|
|
+ strategy.setEntityTableFieldAnnotationEnable(true);
|
|
|
+
|
|
|
+ strategy.setSuperMapperClass("com.storlead.frame.mybatis.mapper.MyBaseMapper");
|
|
|
+ strategy.setSuperServiceClass("com.storlead.frame.mybatis.service.MyBaseService");
|
|
|
+ strategy.setSuperServiceImplClass("com.storlead.frame.mybatis.service.impl.MyBaseServiceImpl");
|
|
|
+ strategy.setEntityLombokModel(true);
|
|
|
+ // 公共父类
|
|
|
+// strategy.setSuperControllerClass("com.baomidou.ant.common.BaseController");
|
|
|
+ // 写于父类中的公共字段
|
|
|
+// strategy.setSuperEntityColumns("id");
|
|
|
+ strategy.setInclude(scanner("表名,多个英文逗号分割").split(","));
|
|
|
+ strategy.setControllerMappingHyphenStyle(true);
|
|
|
+ strategy.setTablePrefix(pc.getModuleName() + "_");
|
|
|
+ mpg.setStrategy(strategy);
|
|
|
+ mpg.setTemplateEngine(new FreemarkerTemplateEngine());
|
|
|
+ mpg.execute();
|
|
|
+ }
|
|
|
+}
|