mybatis-plus代码生成器

引入依赖

<!-- velocity 模板引擎, Mybatis Plus 代码生成器需要 -->
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity-engine-core</artifactId>
        </dependency>

<!-- velocity 模板引擎, Mybatis Plus 代码生成器需要 -->
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity-engine-core</artifactId>
        </dependency>

myatis-plus代码生成器,大部分不用改,需要修改的部分如下:

主要修改地方:

1、项目路径 setOutputDir()

2、主键策略 setIdType, 分为Long->ID_WORKER 和 String -> ID_WORKER.STR

3、数据库配置

4、包配置:模块名setModuleName、分组setParent

5、策略配置:映射表名setInclude() 多表用逗号隔开

class CodeGenerator {

    public static void main(String[] args) {

        // 1、创建代码生成器
        AutoGenerator mpg = new AutoGenerator();

        // 2、全局配置
        GlobalConfig gc = new GlobalConfig();
//        String projectPath = System.getProperty("user.dir");  //原始相对路径写法
        //建议写绝对路径
        gc.setOutputDir("E:\\work\\guli_parent\\service\\service_edu" + "/src/main/java");

        gc.setAuthor("birdy"); //作者
        gc.setOpen(false); //代码生成后是否自动打开各文件夹
        gc.setFileOverride(false); //重新生成时文件是否覆盖,不要覆盖

        //UserServie
        gc.setServiceName("%sService");    //去掉Service接口的首字母I

        gc.setIdType(IdType.ID_WORKER_STR); //主键策略,该主键类型为String。主键Long -> IdType.ID_WORKER
        gc.setDateType(DateType.ONLY_DATE);//定义生成的实体类中日期类型
        gc.setSwagger2(true);//开启Swagger2模式

        mpg.setGlobalConfig(gc);

        // 3、myabtis-plus数据源配置,即使application.properties配置过,也需要再次配置
        DataSourceConfig dsc = new DataSourceConfig();
        dsc.setUrl("jdbc:mysql://localhost:3306/guli?serverTimezone=GMT%2B8");
        dsc.setDriverName("com.mysql.cj.jdbc.Driver");
        dsc.setUsername("root");
        dsc.setPassword("lvniao123456");
        dsc.setDbType(DbType.MYSQL);
        mpg.setDataSource(dsc);

        // 4、包配置
        PackageConfig pc = new PackageConfig();
        pc.setModuleName("eduservice"); //模块名
        //包  com.birdy.eduservice
        pc.setParent("com.birdy");
        //项目层级  com.birdy.eduservice.controller
        pc.setController("controller");
        pc.setEntity("entity");
        pc.setService("service");
        pc.setMapper("mapper");
        mpg.setPackageInfo(pc);

        // 5、策略配置
        StrategyConfig strategy = new StrategyConfig();

        strategy.setInclude("edu_teacher"); //映射表名,自动生成对应表的实体类

        strategy.setNaming(NamingStrategy.underline_to_camel);//数据库表映射到实体的命名策略
        strategy.setTablePrefix(pc.getModuleName() + "_"); //生成实体时去掉表前缀

       strategy.setColumnNaming(NamingStrategy.underline_to_camel);//数据库表字段映射到实体的命名策略
       strategy.setEntityLombokModel(true); // lombok 模型 @Accessors(chain = true) setter链式操作

        strategy.setRestControllerStyle(true); //restful api风格控制器
        strategy.setControllerMappingHyphenStyle(true); //url中驼峰转连字符

        mpg.setStrategy(strategy);


        // 6、执行
        mpg.execute();
    }
}
posted @ 2020-12-29 14:37  至安  阅读(590)  评论(0编辑  收藏  举报