AutoGenerator 是 MyBatis-Plus 的代码生成器,通过 AutoGenerator 可以快速生成 Entity、Mapper、Mapper XML、Service、Controller 等各个模块的代码,极大的提升了开发效率。我们只需要创建表,标注好表的注释,就可以运行代码生成器生成单表的增删查改,非常方便。
使用步骤:
1. 一般先创建一个新的模块,将创建的代码生成在此模块可避免生成的代码与已有代码混淆。
2. 进行配置。
3. 修改部分不合理代码,例如包名不正确之类。
一、 在SpringBoot中引入AutoGenertor需要把部分常用的依赖引入。像 mysql驱动包,myBatis ,Junit单元测试 , log4j , mybatis-plus-generator , freemarker 以及 slf4j。
在Mysql-Puls3.0.3以后官方移除了,代码生成器以及模板引擎的默认依赖,需要手动添加。
下面是demo:
4.0.0 com.gdufs.project ch3_maven_test 1.0-SNAPSHOT mysql mysql-connector-java 8.0.13 com.baomidou mybatis-plus 3.4.0 junit junit 4.12 log4j log4j 1.2.14 com.baomidou mybatis-plus-generator 3.4.0 org.freemarker freemarker 2.3.30 org.slf4j slf4j-api 1.7.22 org.slf4j slf4j-log4j12 1.7.22 src/main/java ** 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.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 + "/yeb-generator/src/main/java"); //作者 gc.setAuthor("benpan"); //打开输出目录 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:3306/yeb? useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia" + "/Shanghai"); dsc.setDriverName("com.mysql.cj.jdbc.Driver"); dsc.setUsername("root"); dsc.setPassword("123456"); mpg.setDataSource(dsc); // 包配置 PackageConfig pc = new PackageConfig(); pc.setParent("com.xxxx") .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 focList = new ArrayList<>(); // 自定义配置会被优先输出 focList.add(new FileOutConfig(templatePath) { @Override public String outputFile(TableInfo tableInfo) { // 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!! return projectPath + "/yeb-generator/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("t_"); mpg.setStrategy(strategy); mpg.setTemplateEngine(new FreemarkerTemplateEngine()); mpg.execute(); } }
以上就是AutoGenerator的使用方法,还有很多可以自定义的地方,本文没有一一写出,大家可以在官网中的的文档进行查看。
Mybatis-Plus官网: https://www.mybatis-plus.com/guide/generator.html#使用教程
Mybatis-Plus Github页面: https://github.com/baomidou/mybatis-plus



