Mybatis Plus代码生成器

Mybatis Plus代码生成器

添加依赖

    <dependency>
        <groupId>com.baomidou</groupId>
        <artifactId>mybatis-plus-generator</artifactId>
        <version>3.4.1</version>
    </dependency>
    <!--mybatis-plus生成代码的模板引擎-->
    <dependency>
        <groupId>org.freemarker</groupId>
        <artifactId>freemarker</artifactId>
        <version>2.3.30</version>
    </dependency>
    <!--Mysql-->
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <scope>runtime</scope>
    </dependency>

运行代码

/**
*


* 读取控制台内容
*


*/
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.isNotBlank(ipt)) {
return ipt;
}
}
throw new MybatisPlusException(“请输入正确的” + tip + “!”);
}
public static void main(String[] args) {
    // 代码生成器
    AutoGenerator generator = new AutoGenerator();

    // 全局配置
    GlobalConfig gc = new GlobalConfig();
    String projectPath = System.getProperty("user.dir");
    gc.setOutputDir(projectPath + "/src/main/java");
    // 设置作者
    gc.setAuthor("Owen");
    // 打开输出目录
    gc.setOpen(false);
    // xml开启 BaseResultMap
    gc.setBaseResultMap(true);
    // xml开启 BaseColumnList
    gc.setBaseColumnList(true);
    // 实体属性 Swagger2 注解
    // gc.setSwagger2(true);
    // 设置日期格式,采用Date
    gc.setDateType(DateType.ONLY_DATE);
    generator.setGlobalConfig(gc);

    // 数据源配置
    DataSourceConfig dsc = new DataSourceConfig();
    dsc.setUrl("jdbc:mysql://127.0.0.1:3306/pest?useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true");
    // dsc.setSchemaName("public");
    // 此处是mysql8.0版本
    dsc.setDriverName("com.mysql.cj.jdbc.Driver");
    dsc.setUsername("root");
    dsc.setPassword("123456");
    generator.setDataSource(dsc);

    // 包配置
    PackageConfig pc = new PackageConfig();
    // 设置生成的代码对应的报名
    pc.setParent("com.seckill")
            .setEntity("pojo")
            .setMapper("mapper")
            .setService("service")
            .setServiceImpl("service.impl")
            .setController("controller");
    generator.setPackageInfo(pc);

    // 自定义配置
    InjectionConfig cfg = new InjectionConfig() {
        @Override
        public void initMap() {
            // to do nothing
        }
    };

    // 如果模板引擎是 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 的名称会跟着发生变化!!
            return projectPath + "/src/main/resources/mapper/" + pc.getModuleName()
                    + "/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML;
        }
    });
    cfg.setFileOutConfigList(focList);
    generator.setCfg(cfg);

    // 配置模板
    TemplateConfig templateConfig = new TemplateConfig();
    templateConfig.setXml(null);
    generator.setTemplate(templateConfig);

    // 策略配置
    StrategyConfig strategy = new StrategyConfig();
    // 表名下划线转驼峰
    strategy.setNaming(NamingStrategy.underline_to_camel);
    // 设置忽略表名的前缀
    strategy.setTablePrefix("t_");
    // 列名下划线转驼峰
    strategy.setColumnNaming(NamingStrategy.underline_to_camel);
    // strategy.setSuperEntityClass("你自己的父类实体,没有就不用设置!");
    // 使用LomBok
    strategy.setEntityLombokModel(true);
    // 生成的Controller层使用Rest风格 默认不使用
    //strategy.setRestControllerStyle(true);
    // 公共父类
    //strategy.setSuperControllerClass("你自己的父类控制器,没有就不用设置!");
    // 写于父类中的公共字段
    //strategy.setSuperEntityColumns("id");
    strategy.setInclude(scanner("表名,多个英文逗号分割").split(","));
    strategy.setControllerMappingHyphenStyle(true);
    generator.setStrategy(strategy);

    // 设置模板引擎使用FreemarkerTemplateEngine
    generator.setTemplateEngine(new FreemarkerTemplateEngine());
    generator.execute();
}

注意要修改的部分

Mybatis Plus代码生成器

运行成功生成代码

Mybatis Plus代码生成器
mybatis-plus官网:https://mp.baomidou.com/guide/generator.html#%E4%BD%BF%E7%94%A8%E6%95%99%E7%A8%8B

上一篇:《Effective C++》条款35 Strategy 模式写法记录


下一篇:如何少写if-else