pom.xml
com.baomidou mybatis-plus-generator3.3.2 org.springframework.boot spring-boot-starter-freemarker2.4.4
实例代码
package com.example.voluntaryfilling.utils; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.core.exceptions.MybatisPlusException; import com.baomidou.mybatisplus.core.toolkit.StringPool; import com.baomidou.mybatisplus.core.toolkit.StringUtils; import com.baomidou.mybatisplus.generator.AutoGenerator; import com.baomidou.mybatisplus.generator.InjectionConfig; import com.baomidou.mybatisplus.generator.config.*; import com.baomidou.mybatisplus.generator.config.po.TableInfo; import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy; import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine; import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class CodeGenerator { 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 mpg = new AutoGenerator(); // 全局配置 GlobalConfig gc = new GlobalConfig(); //项目根目录 String projectPath = System.getProperty("user.dir"); //用于多个模块下生成到精确的目录下(我设置在桌面) //String projectPath = "C:/Users/xie/Desktop"; //代码生成目录 gc.setOutputDir(projectPath + "/src/main/java"); //开发人员 gc.setAuthor("***"); // 是否打开输出目录(默认值:null) gc.setOpen(false); //实体属性 Swagger2 注解 gc.setSwagger2(false); // 是否覆盖已有文件(默认值:false) //gc.setFileOverride(true); //把全局配置添加到代码生成器主类 mpg.setGlobalConfig(gc); // 数据源配置 DataSourceConfig dsc = new DataSourceConfig(); //数据库连接 dsc.setUrl("jdbc:mysql://localhost:3306/test?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true"); // 数据库 schema name //dsc.setSchemaName("public"); // 数据库类型 dsc.setDbType(DbType.MYSQL); // 驱动名称 dsc.setDriverName("com.mysql.cj.jdbc.Driver"); //用户名 dsc.setUsername("root"); //密码 dsc.setPassword("root"); //把数据源配置添加到代码生成器主类 mpg.setDataSource(dsc); // 包配置 PackageConfig pc = new PackageConfig(); // 添加这个后 会以一个实体为一个模块 比如user实体会生成user模块 每个模块下都会生成三层 // pc.setModuleName(scanner("模块名")); // 父包名。如果为空,将下面子包名必须写全部, 否则就只需写子包名 pc.setParent("com.example.demo"); // Service包名 pc.setService("service"); // Entity包名 pc.setEntity("entity"); // ServiceImpl包名 pc.setServiceImpl("service.impl"); // Mapper包名 pc.setMapper("mapper"); // Controller包名 pc.setController("controller"); // Mapper.xml包名 pc.setXml("mapper"); // 把包配置添加到代码生成器主类 mpg.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"; // 自定义输出配置 ListfocList = 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); mpg.setCfg(cfg); // 配置模板 TemplateConfig templateConfig = new TemplateConfig(); // 配置自定义输出模板 //指定自定义模板路径,注意不要带上.ftl/.vm, 会根据使用的模板引擎自动识别 // templateConfig.setEntity("templates/entity2.java"); // templateConfig.setService(); // templateConfig.setController(); templateConfig.setXml(null); mpg.setTemplate(templateConfig); // 数据库表配置 StrategyConfig strategy = new StrategyConfig(); // 数据库表映射到实体的命名策略:下划线转驼峰 strategy.setNaming(NamingStrategy.underline_to_camel); // 数据库表字段映射到实体的命名策略, 未指定按照 naming 执行 strategy.setColumnNaming(NamingStrategy.underline_to_camel); // 实体是否为lombok模型(默认 false) strategy.setEntityLombokModel(true); // 生成 @RestController 控制器 strategy.setRestControllerStyle(true); // 实体类主键名称设置 strategy.setSuperEntityColumns("id"); // 需要包含的表名,允许正则表达式 // 这里做了输入设置 strategy.setInclude(scanner("表名,多个英文逗号分割").split(",")); // 需要排除的表名,允许正则表达式 //strategy.setExclude("***"); // 是否生成实体时,生成字段注解 默认false; strategy.setEntityTableFieldAnnotationEnable(true); // 驼峰转连字符 strategy.setControllerMappingHyphenStyle(true); // 表前缀 strategy.setTablePrefix(pc.getModuleName() + "_"); // 把数据库配置添加到代码生成器主类 mpg.setStrategy(strategy); // 在代码生成器主类上配置模板引擎 mpg.setTemplateEngine(new FreemarkerTemplateEngine()); //生成 mpg.execute(); } }
mapper.xml.ftl
<#if enableCache> #if> <#if baseResultMap> <#list table.fields as field> <#if field.keyFlag><#--生成主键排在第一位--> #if> <#if baseColumnList>#if> #list> <#list table.commonFields as field><#--生成公共字段 --> #list> <#list table.fields as field> <#if !field.keyFlag><#--生成普通字段 --> #if> #list> <#list table.commonFields as field> ${field.columnName}, #list> ${table.fieldNames} #if>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)