zoukankan      html  css  js  c++  java
  • Mybatis-plus 代码生成器 AutoGenerator 的简介和(最详细)使用

      原文地址:https://blog.csdn.net/xzys430/article/details/109089884

    一、添加依赖

            MyBatis-Plus 从 3.0.3 之后移除了代码生成器与模板引擎的默认依赖,需要手动添加相关依赖。以下是AutoGenerator代码生成器和freemarker模板引擎依赖(模板引擎选一种,也可以自定义模板引擎):

    <!--mybatis-plus(springboot版)-->
    <dependency>
        <groupId>com.baomidou</groupId>
        <artifactId>mybatis-plus-boot-starter</artifactId>
        <version>3.4.0</version>
    </dependency>
    <!--mybatis-plus代码生成器-->
    <dependency>
        <groupId>com.baomidou</groupId>
        <artifactId>mybatis-plus-generator</artifactId>
        <version>3.4.0</version>
    </dependency>
    <!--Velocity(默认)模板引擎-->
    <dependency>
        <groupId>org.apache.velocity</groupId>
        <artifactId>velocity-engine-core</artifactId>
        <version>2.2</version>
    </dependency>
    <!--freemarker模板引擎(博主用的)-->
    <dependency>
        <groupId>org.freemarker</groupId>
        <artifactId>freemarker</artifactId>
        <version>2.3.30</version>
    </dependency>
    <!--beetl模板引擎-->
    <dependency>
        <groupId>com.ibeetl</groupId>
        <artifactId>beetl</artifactId>
        <version>3.2.1.RELEASE</version>
    </dependency>

    二、自定义参数

    1、配置 GlobalConfig(全局配置)

    // 全局配置
    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(true);
    //去掉接口上的I
    //gc.setServiceName("%Service");
    // 配置时间类型策略(date类型),如果不配置会生成LocalDate类型
    gc.setDateType(DateType.ONLY_DATE);
    // 是否覆盖已有文件(默认值:false)
    gc.setFileOverride(true);
    //把全局配置添加到代码生成器主类
    mpg.setGlobalConfig(gc);

    2、 配置 DataSourceConfig(数据源配置)

    // 数据源配置
    DataSourceConfig dsc = new DataSourceConfig();
    //数据库连接
    dsc.setUrl("jdbc:mysql://localhost:3306/blog?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=GMT%2B8");
    // 数据库 schema name
    //dsc.setSchemaName("public");
    // 数据库类型
    dsc.setDbType(DbType.MYSQL);
    // 驱动名称
    dsc.setDriverName("com.mysql.cj.jdbc.Driver");
    //用户名
    dsc.setUsername("root");
    //密码
    dsc.setPassword("430423");
    //把数据源配置添加到代码生成器主类
    mpg.setDataSource(dsc);

    3、 配置PackageConfig(包名配置)

    // 包配置
    PackageConfig pc = new PackageConfig();
    // 添加这个后 会以一个实体为一个模块 比如user实体会生成user模块 每个模块下都会生成三层
    // pc.setModuleName(scanner("模块名"));
    // 父包名。如果为空,将下面子包名必须写全部, 否则就只需写子包名
    pc.setParent("com.xxgg.blog");
    // 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);

    4、 配置InjectionConfig(自定义配置)

    // 自定义配置
    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.setFileCreate(new IFileCreate() {
        @Override
        public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) {
            // 判断自定义文件夹是否需要创建
            checkDir("调用默认方法创建的目录,自定义目录用");
            if (fileType == FileType.MAPPER) {
                // 已经生成 mapper 文件判断存在,不想重新生成返回 false
                return !new File(filePath).exists();
            }
            // 允许生成模板文件
            return true;
           }
    });
    */
    cfg.setFileOutConfigList(focList);
    mpg.setCfg(cfg);

    5、 配置TemplateConfig(模板配置)

    // 配置模板
    TemplateConfig templateConfig = new TemplateConfig();
    
    // 配置自定义输出模板
    //指定自定义模板路径,注意不要带上.ftl/.vm, 会根据使用的模板引擎自动识别
    // templateConfig.setEntity("templates/entity2.java");
    // templateConfig.setService();
    // templateConfig.setController();
    
    templateConfig.setXml(null);
    mpg.setTemplate(templateConfig);

    6、配置StrategyConfig(策略配置)

    // 策略配置,我喜欢叫数据库表配置
    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);

    7、生成

    // 在代码生成器主类上配置模板引擎
    mpg.setTemplateEngine(new FreemarkerTemplateEngine());
    //生成
    mpg.execute();

    三、演示

    1、代码

    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 {
        /**
         * <p>
         * 读取控制台内容
         * </p>
         */
        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 + "/src/main/java");
            //作者
            gc.setAuthor("yxl");
            //打开输出目录
            gc.setOpen(false);
            //xml开启 BaseResultMap
            gc.setBaseResultMap(true);
            //xml 开启BaseColumnList
            gc.setBaseColumnList(true);
            // 实体属性 Swagger2 注解
            gc.setSwagger2(true);
            mpg.setGlobalConfig(gc);
            // 数据源配置
            DataSourceConfig dsc = new DataSourceConfig();
            dsc.setUrl("jdbc:mysql://localhost:3310/his-base-center?"+
                    "useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia" +
                    "/Shanghai");
            dsc.setDriverName("com.mysql.cj.jdbc.Driver");
            dsc.setUsername("root");
            dsc.setPassword("root");
            mpg.setDataSource(dsc);
            // 包配置
            PackageConfig pc = new PackageConfig();
            pc.setParent("com.his.base.org")
                    .setEntity("pojo")
                    .setMapper("mapper")
                    .setService("service")
                    .setServiceImpl("service.impl")
                    .setController("controller");
            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";
            // 自定义输出配置
            List<FileOutConfig> focList = new ArrayList<>();
            // 自定义配置会被优先输出
            focList.add(new FileOutConfig(templatePath) {
                @Override
                public String outputFile(TableInfo tableInfo) {
                    // 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!!
                    return projectPath + "/hx-com.his.base.api/src/main/resources/mapper/"
                            + tableInfo.getEntityName() + "Mapper"
                            + StringPool.DOT_XML;
                }
            });
            cfg.setFileOutConfigList(focList);
            mpg.setCfg(cfg);
            // 配置模板
            TemplateConfig templateConfig = new TemplateConfig();
            templateConfig.setXml(null);
            mpg.setTemplate(templateConfig);
            // 策略配置
            StrategyConfig strategy = new StrategyConfig();
            //数据库表映射到实体的命名策略
            strategy.setNaming(NamingStrategy.underline_to_camel);
            //数据库表字段映射到实体的命名策略
            strategy.setColumnNaming(NamingStrategy.no_change);
            //lombok模型
            strategy.setEntityLombokModel(true);
            //生成 @RestController 控制器
            strategy.setRestControllerStyle(true);
            strategy.setInclude(scanner("表名,多个英文逗号分割").split(","));
            strategy.setControllerMappingHyphenStyle(true);
            //表前缀
            strategy.setTablePrefix(pc.getModuleName()+"_");
            mpg.setStrategy(strategy);
            mpg.setTemplateEngine(new FreemarkerTemplateEngine());
            mpg.execute();
        }
    }

    2、pom.xml文件

    <!--web 依赖-->
    
    
    
    <dependency>
    
    <groupId>org.springframework.boot</groupId>
    
    <artifactId>spring-boot-starter-web</artifactId>
    
    </dependency>
    
    <!--mybatis-plus 依赖-->
    
    
    
    <dependency>
    
    <groupId>com.baomidou</groupId>
    
    <artifactId>mybatis-plus-boot-starter</artifactId>
    
    <version>3.3.1.tmp</version>
    
    </dependency>
    
    <!--mybatis-plus 代码生成器依赖-->
    
    
    
    <dependency>
    
    <groupId>com.baomidou</groupId>
    
    <artifactId>mybatis-plus-generator</artifactId>
    
    <version>3.3.1.tmp</version>
    
    </dependency>
    
    <!--freemarker 依赖-->
    
    
    
    <dependency>
    
    <groupId>org.freemarker</groupId>
    
    <artifactId>freemarker</artifactId>
    
    </dependency>
    
    <!--mysql 依赖-->
    
    
    
    <dependency>
    
    <groupId>mysql</groupId>
    
    <artifactId>mysql-connector-java</artifactId>
    
    <scope>runtime</scope>
    
    </dependency>
  • 相关阅读:
    WDK中出现的特殊代码
    敏捷是怎样炼成的
    推荐一个非常好玩的falsh游戏
    软件安全技术
    J2EE的昨天,今天,明天
    Java打印程序设计
    关于父亲
    xml发展历史和用途
    CRM与ERP整合的六个切入点
    SEO(搜索引擎最佳化)简介
  • 原文地址:https://www.cnblogs.com/yangxiaoli/p/15378867.html
Copyright © 2011-2022 走看看