springBoot Mybatis-PLUS Generator 自动生成代码 mybatis-plus Generator生成代码 mybatis生成代码

springBoot Mybatis-PLUS Generator 自动生成代码 mybatis-plus Generator生成代码 mybatis生成代码

  • 1、加入依赖
  • 2、main方法测试

1、加入依赖

		<!--   mybatis-plus代码生成-->
		
			com.baomidou
			mybatis-plus-generator
			3.5.2
		
		
		<!--   mybatis-plus代码生成所用到的模版引擎-->
		
			org.freemarker
			freemarker
			2.3.28
			compile
		

		<!--   MySQL连接驱动-->
		
			mysql
			mysql-connector-java
		

2、main方法测试

import com.baomidou.mybatisplus.generator.FastAutoGenerator;
import com.baomidou.mybatisplus.generator.config.OutputFile;
import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;

/**
 * 

*

Mybatis 表 实体类、mapper、controller生成

* 文档:文档地址 * 代码需要依赖 Maven Freemarker引擎模板 * *

* */
public class MyBatisAutoGenerator { public static void main(String[] args) { // 要生成的表列表 List<String> includeTables = new LinkedList<>(); includeTables.add("t_test_table"); FastAutoGenerator.create( "jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&verifyServerCertificate=false&useSSL=false&rewriteBatchedStatements=true", // jdbc连接url "root", // 数据用户名 "123456" // 数据库密码 ).globalConfig(builder -> { builder.author("qbz金色蔷薇") // 设置作者 .enableSwagger() // 开启 swagger 模式 .fileOverride() // 覆盖已生成文件 .outputDir("E:\\mybatis-out"); // 指定代码文件输出目录 }).packageConfig(builder -> { builder. Parent("com.huawei") // 设置父包名, 例如 包名为 com.huawei.core,那么可以填 com.huawei .moduleName("core") // 设置父包模块名 .pathInfo(Collections.singletonMap(OutputFile.xml, "E:\\mybatis-out")); // 设置mapperXml生成路径 }).strategyConfig(builder -> { builder.addInclude(includeTables) // 设置需要生成的表名 .addTablePrefix("t_", "c_"); // 设置过滤表前缀,可选 }).templateEngine(new FreemarkerTemplateEngine()) // 使用Freemarker引擎模板,默认的是Velocity引擎模板 .execute(); } }

你可能感兴趣的:(SpringBoot,Mybatis,spring,boot,mybatis,后端)