Mybatis-plus代码⽣成器(踩坑及源码)
今天闲来⽆事,想起来mybatis-plus的代码⽣成器,打算⾃⼰写⼀个玩⼉玩⼉,没想到踩坑了主要是参考mybatis-plus的官⽹进⾏的操作,不知道是不是官⽅的问题呢?咳咳!不对肯定是我⾃⼰的问题!官⽅⼤⼤怎么可能会有问题!
好了,⾔归正传,mybatis-plus的代码⽣成器相⽐都有所⽿闻,我现在项⽬组也在使⽤这个。可以说是⾮常⽅便,创建起来也是⾮常的简单⽅便,今天就分享⼀下我踩得坑~
导⼊依赖
这⾥就是我踩坑的地⽅,官⽅⽂档给的mybatis-plus-generator的版本是3.5.0,本⼈刚开始也⽤的官⽅所给的3.5.0,但是在把官⽅的样例copy过来之后发现new配置对象⼀直提⽰依赖包的问题,后来修改为3.4.0问题解决
<!-- 代码⽣成器 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>org.apachemons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.7</version>
</dependency>
<!-- freemarker模板引擎 -->
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.31</version>
</dependency>
全局配置
GlobalConfig gc = new GlobalConfig();
String projectPath = Property("user.dir");
gc.setOutputDir(projectPath + "/src/main/java");
gc.setAuthor("zhangziang");
gc.setOpen(false);
//xml开启 BaseResultMap
gc.setBaseResultMap(true);
/
/xml开启 BaseColumnList
gc.setBaseColumnList(true);
// gc.setSwagger2(true); 实体属性 Swagger2 注解
//⽇期格式采⽤date
gc.setDateType(DateType.ONLY_DATE);
mpg.setGlobalConfig(gc);
数据源配置
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://localhost:3306/seckill?
useUnicode=true&useSSL=false&characterEncoding=utf8");
// dsc.setSchemaName("public");
dsc.setDriverName("sql.cj.jdbc.Driver");
dsc.setUsername("root");
dsc.setPassword("root");
mpg.setDataSource(dsc);
包配置
PackageConfig pc = new PackageConfig();
pc.setParent("com.ang.seckill")
.setEntity("entity")
.setService("service")
.setServiceImpl("service.impl")
.setController("controller");
mpg.setPackageInfo(pc);
以上配置根据⾃⼰的需求可以进⾏修改
还有⼀些策略等其他配置我就不⼀⼀列举了,下⾯把源码发给⼤家,供⼤家参考package ator;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import ptions.MybatisPlusException;
import lkit.StringPool;
import lkit.StringUtils;
import ator.AutoGenerator;
import ator.InjectionConfig;
import fig.*;
import fig.po.TableInfo;
import fig.rules.DateType;
import fig.rules.NamingStrategy;
import ine.FreemarkerTemplateEngine; public class CodeGenerator {
/**
* <p>
* 读取控制台内容
* </p>
*/
public static String scanner(String tip) throws Exception {
Scanner scanner = new Scanner(System.in);
StringBuilder help = new StringBuilder();
help.append("请输⼊" + tip + ":");
System.out.String());
if (scanner.hasNext()) {
String ipt = ();
if (StringUtils.isNotBlank(ipt)) {
return ipt;
}
}
throw new MybatisPlusException("请输⼊正确的" + tip + "!");
}
public static void main(String[] args) throws Exception {
public static void main(String[] args) throws Exception {
// 代码⽣成器
AutoGenerator mpg = new AutoGenerator();
// 全局配置
GlobalConfig gc = new GlobalConfig();
String projectPath = Property("user.dir");
gc.setOutputDir(projectPath + "/src/main/java");
gc.setAuthor("zhangziang");
gc.setOpen(false);
/
/xml开启 BaseResultMap
gc.setBaseResultMap(true);
//xml开启 BaseColumnList
gc.setBaseColumnList(true);
// gc.setSwagger2(true); 实体属性 Swagger2 注解
//⽇期格式采⽤date
gc.setDateType(DateType.ONLY_DATE);
mpg.setGlobalConfig(gc);
// 数据源配置
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://localhost:3306/seckill?useUnicode=true&useSSL=false&characterEncoding=utf8");        // dsc.setSchemaName("public");
dsc.setDriverName("sql.cj.jdbc.Driver");
dsc.setUsername("root");
dsc.setPassword("root");
mpg.setDataSource(dsc);
// 包配置
PackageConfig pc = new PackageConfig();
pc.setParent("com.ang.seckill")
.setEntity("entity")
.setService("service")
.setServiceImpl("service.impl")
.setController("controller");
mpg.setPackageInfo(pc);
// ⾃定义配置
InjectionConfig cfg = new InjectionConfig() {
@Override
public void initMap() {
// to do nothing
}mysql操作官方文档
};
// 如果模板引擎是 freemarker
String templatePath = "/l.ftl";
// 如果模板引擎是 velocity
/
/ String templatePath = "/l.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()
+ "/" + EntityName() + "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();
//        templateConfig.setEntity("templates/entity2.java")
/
/                      .setMapper("templates/mapper2.java")
//                      .setService("templates/service2.java")
//                      .setController("templates/controller2.java")
//                      .setServiceImpl("templates/serviceImpl2.java");
// 配置⾃定义输出模板
//指定⾃定义模板路径,注意不要带上.ftl/.vm, 会根据使⽤的模板引擎⾃动识别        // templateConfig.setEntity("templates/entity2.java");
// templateConfig.setService();
// templateConfig.setController();
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.setEntityLombokModel(true);
strategy.setRestControllerStyle(true);
// 公共⽗类
strategy.setSuperControllerClass("你⾃⼰的⽗类控制器,没有就不⽤设置!");        // 写于⽗类中的公共字段
strategy.setSuperEntityColumns("id");
strategy.setInclude(scanner("表名,多个英⽂逗号分割").split(","));
strategy.setControllerMappingHyphenStyle(true);
strategy.setTablePrefix("t_");
mpg.setStrategy(strategy);
mpg.setTemplateEngine(new FreemarkerTemplateEngine());
}
}
原创不易,如对您有帮助,⿇烦给⼩昂来个三连 谢谢

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。