首页 > 其他分享 >IDEA 中的代码生成器(CodeGenerator)的使用

IDEA 中的代码生成器(CodeGenerator)的使用

时间:2024-04-03 21:22:23浏览次数:13  
标签:代码生成 mpg CodeGenerator IDEA strategy gc new import com

  代码生成器的使用

  在IDEA中,为了方便简化代码编写,可以引入代码生成器CodeGenerator类。这个类可以根据数据库中存在的表,自动在IDEA中生成Controller类、Entity类、Mapper类、Sevice类、ServiceImpl扩展类、以及xml文件。

  使用方法:在项目目录下新建一个common包,直接ctrl+v将下列代码复制进去即可(部分代码需要根据具体项目进行简单更改)。

package com.wms.common;
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.isNotBlank(ipt)) {
 return ipt;
 }
 }
 throw new MybatisPlusException("请输⼊正确的" + tip + "!");
 }
 /**
 * 操作步骤:
 * 1.修改数据源包括地址密码信息,对应代码标记:⼀、 下同
 * 2.模块配置,可以修改包名
 * 3.修改模板(这步可忽略)
 * @param args
 */
 public static void main(String[] args) {
 // 代码⽣成器
 AutoGenerator mpg = new AutoGenerator();
 // 全局配置
 GlobalConfig gc = new GlobalConfig();
 String projectPath = System.getProperty("user.dir")+"/wms";
 gc.setOutputDir(projectPath + "/src/main/java");
 gc.setAuthor("小花护符");
 gc.setOpen(false);
 gc.setSwagger2(true); //实体属性 Swagger2 注解
 gc.setBaseResultMap(true);// XML ResultMap
 gc.setBaseColumnList(true);// XML columList
 //去掉service接⼝⾸字⺟的I, 如DO为User则叫UserService
 gc.setServiceName("%sService");
 mpg.setGlobalConfig(gc);
 // 数据源配置
 DataSourceConfig dsc = new DataSourceConfig();
 // ⼀、修改数据源
 dsc.setUrl("jdbc:mysql://localhost:3306/wms01?
useUnicode=true&characterEncoding=UTF8&useSSL=false");
 // dsc.setSchemaName("public");
 dsc.setDriverName("com.mysql.jdbc.Driver");
 dsc.setUsername("root");
 dsc.setPassword("root");
 mpg.setDataSource(dsc);
 // 包配置
 PackageConfig pc = new PackageConfig();
 //pc.setModuleName(scanner("模块名"));
 // ⼆、模块配置
 pc.setParent("com.wms")
 .setEntity("entity")
 .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 + "/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);
 // 配置模板
 TemplateConfig templateConfig = new TemplateConfig();
 // 配置⾃定义输出模板
 //指定⾃定义模板路径,注意不要带上.ftl/.vm, 会根据使⽤的模板引擎⾃动识别
 // 三、修改模板
 /*templateConfig.setEntity("templates/entity2.java");
 templateConfig.setService("templates/service2.java");
 templateConfig.setController("templates/controller2.java");
 templateConfig.setMapper("templates/mapper2.java");
 templateConfig.setServiceImpl("templates/serviceimpl2.java");*/
 templateConfig.setXml(null);
 mpg.setTemplate(templateConfig);
 // 策略配置
 StrategyConfig strategy = new StrategyConfig();
 strategy.setNaming(NamingStrategy.underline_to_camel);
 strategy.setColumnNaming(NamingStrategy.underline_to_camel);
 // strategy.setSuperEntityClass("你⾃⼰的⽗类实体,没有就不⽤设置!");
 //strategy.setSuperEntityClass("BaseEntity");
 strategy.setEntityLombokModel(true);
 strategy.setRestControllerStyle(true);
 // 公共⽗类
 //strategy.setSuperControllerClass("BaseController");
 // strategy.setSuperControllerClass("你⾃⼰的⽗类控制器,没有就不⽤设置!");
 // 写于⽗类中的公共字段
 // strategy.setSuperEntityColumns("id");
 strategy.setInclude(scanner("表名,多个英⽂逗号分割").split(","));
 strategy.setControllerMappingHyphenStyle(true);
 //strategy.setTablePrefix(pc.getModuleName() + "_");
 // 忽略表前缀tb_,⽐如说tb_user,直接映射成user对象
 // 四、注意是否要去掉表前缀
 //strategy.setTablePrefix("tb_");
 mpg.setStrategy(strategy);
 mpg.setTemplateEngine(new FreemarkerTemplateEngine());
 mpg.execute();
 }
}

一般需要更改的地方:

  1.数据源:改成自己数据库中的数据源(必改)

   2.配置模块:根据IDEA项目结构进行修改(必改)

  3.全局配置(一般不用改,作者名称可以改改)

 生成器的使用:

  1.在代码生成器类中右键,选择运行代码生成器类

   2.在控制台中根据提示输入你要使用的表名(比如user表),回车

   之后控制台出现运行成功的提示,那么类下文件就创建成功了。

标签:代码生成,mpg,CodeGenerator,IDEA,strategy,gc,new,import,com
From: https://www.cnblogs.com/LHJ822/p/18113534

相关文章

  • Java开发工具:IDEA
    学习,开发编程都离不开开发工具,常见之一的开发工具IDEA:一般学习使用的话使用免费的社区版本就够用了;https://www.jetbrains.com.cn/idea/download/download-thanks.html?platform=windows&code=IIC下载下来傻瓜式点点点安装就好了,使用开发工具让让我们在学习和开发的时候更好,......
  • idea从零到精通07之idea数据库管理,作为移动开发程序员
    作者简介引言导航热门专栏推荐视频讲解概述一、打开Database管理界面二、配置数据库连接三、在图形化界面操作四、在控制台查询五、在控制台执行操作六、数据导出方法1,直接在结果控制台导出方法2,在Database管理区中导出七、数据结果的多种展示......
  • 关于AI编程代码生成工具汇总(持续整理中)
    1.BaiduComatehttps://comate.baidu.com/zh基于文心大模型,结合百度积累多年的编程现场大数据和外部优秀开源数据,为你生成更符合实际研发场景的优质代码。提升编码效率,释放“十倍”软件生产力。有免费版和付费版(提供高级功能)目前看只支持前端工具(目前Comate支持100+主流编程......
  • idea怎么解决已忽略的pom.xml文件
    问题描述在使用idea创建maven模块的时候,如果创建好又把maven删了,当我们再次创建同名的模块,idea就会识别当前的模块是已删除的,自然就会把pom.xml文件忽略,导致不生效。解决方法在设置里进行操作: 如果第一时间删除线没有消失的话,重启一下idea就好了。......
  • IDEA 设置代码自动提示快捷键
    前言:使用eclipse都习惯使用快捷键ALT+/来代码自动提示,后来使用IntelliJIdea这个快捷键并不管用,十分不便,这里记录如何使更改idea代码自动提示快捷键。哪个是代码自动提示快捷键File–》Settings–》KeyMa(快捷键ctrl+alt+s)进入快捷键设置界面。idea中默认的代码......
  • IDEA中新建SpringBoot模块,JDK版本问题解决
    问题描述IDEA中新建SpringBoot模块,使用的JAVAJDK1.8,新建模块时选项中没有JDK8: 运行时报错,JDK之类的问题解决方案,查看修改以下四个地方:(1)设置-Java编译器 (2)项目结构--依赖以及源码 ......
  • idea汉化包安装失败解决方法
    idea安装中文插件时提示:Plugin"Chinese(Simplified)LanguagePack/中文语言包"wasnotinstalled:查看自己idea的版本,打开idea的时候可以看到,去插件官网查看自己idea的版本对应的插件版本,下载可以兼容安装在你电脑当前版本的汉化包下载好后,操作方法如下:1.打开IDE......
  • eclipse、IDEA配置文档注释
    Javadoc:文档注释常用参数常见注释类型注释含义@author类的作者@version类的版本@param方法的参数@return方法的返回类型@exception方法抛出的异常@see另外参照……@since从什么时候开始使用的@date日期@time时间最常用设置对象类......
  • IDEA中使用maven打包且包含依赖
    具体配置这里我们说的都是非SpringBoot项目正常我们在使用maven时,是不需要将依赖也包含进去的,但是如果想jar包能直接通过java-jar来执行,那么就需要包含依赖。<plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-assembly-plugin</artif......
  • a new idea
    RD性能:结合图像重压缩的MLCC模型以及自编码器中的注意力机制TheDevilIsintheDetails:Window-basedAttentionforImageCompression(全注意力机制可以换成ViT)JointGlobalandLocalHierarchicalPriorsforLearnedImageCompression(CNN+Transfomer)做剪枝impor......