推荐使用mybatis-plus逆向生成crud代码,让你开发效率提升50%
Posted 噫!微斯人,吾谁与归
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了推荐使用mybatis-plus逆向生成crud代码,让你开发效率提升50%相关的知识,希望对你有一定的参考价值。
文章目录
1.在自己的某个服务的test目录下创建CodeGenerator类
需要判断自己在那个服务下,CodeGenerator类中需要使用该路径。
2.导入MP-Generator、模板依赖
3.CodeGenerator代码
import com.baomidou.mybatisplus.core.exceptions.MybatisPlusException;
import com.baomidou.mybatisplus.core.toolkit.StringPool;
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.DateType;
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;
import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine;
import org.apache.commons.lang.StringUtils;
import java.util.*;
/**
* Created by zsh on 2022/4/23
* 逆向工程
* @author zsh
*/
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.isNotBlank(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 + "/mi-resource/src/main/java");
//作者
gc.setAuthor("zsh");
//打开输出目录
gc.setOpen(false);
//xml开启 BaseResultMap
gc.setBaseResultMap(true);
//xml 开启BaseColumnList
gc.setBaseColumnList(true);
//日期格式,采用Date
gc.setDateType(DateType.ONLY_DATE);
mpg.setGlobalConfig(gc);
// 数据源配置
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://xxxxxxx:3306/you_mi?serverTimezone=UTC&allowPublicKeyRetrieval=true");
dsc.setDriverName("com.mysql.cj.jdbc.Driver");
dsc.setUsername("root");
dsc.setPassword("xxxxxx");
mpg.setDataSource(dsc);
// 包配置
PackageConfig pc = new PackageConfig();
pc.setParent("com.zsh.resource")
.setEntity("model")
.setMapper("mapper")
.setService("service")
.setServiceImpl("service.impl")
.setController("controller");
mpg.setPackageInfo(pc);
// 自定义配置
InjectionConfig cfg = new InjectionConfig()
@Override
public void initMap()
// to do nothing
Map<String,Object> map = new HashMap<>();
map.put("v","1.0");
this.setMap(map);
;
// 如果模板引擎是 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 + "/mi-resource/src/main/resources/mapping/" +
tableInfo.getEntityName() + "Mapper"
+ StringPool.DOT_XML;
);
cfg.setFileOutConfigList(focList);
mpg.setCfg(cfg);
// 配置模板
TemplateConfig templateConfig = new TemplateConfig()
.setEntity("templates/entity.java")
.setMapper("templates/mapper.java")
.setService("templates/service.java")
.setServiceImpl("templates/serviceImpl.java")
.setController("templates/controller.java");
templateConfig.setXml(null);
mpg.setTemplate(templateConfig);
// 策略配置
StrategyConfig strategy = new StrategyConfig();
//数据库表映射到实体的命名策略
strategy.setNaming(NamingStrategy.underline_to_camel);
//数据库表字段映射到实体的命名策略
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
//lombok模型
strategy.setEntityLombokModel(true);
//生成 @RestController 控制器
// strategy.setRestControllerStyle(true);
strategy.setInclude(scanner("表名,多个英文逗号分割").split(","));
strategy.setControllerMappingHyphenStyle(true);
//表前缀
strategy.setTablePrefix("res_");
mpg.setStrategy(strategy);
mpg.setTemplateEngine(new FreemarkerTemplateEngine());
mpg.execute();
4.注意点
(1)如下表示enitty、controller、service、mapper的生成路径;projectPath表示项目名;这里的mi-resource表示父工程下的某个子模块,如果你的项目只有一个模块,去掉即可。
gc.setOutputDir(projectPath + "/mi-resource/src/main/java");
(2)如下是xml文件的生成目录,projectPath表示项目名;这里的mi-resource表示父工程下的某个子模块,如果你的项目只有一个模块,去掉即可。
focList.add(new FileOutConfig(templatePath)
@Override
public String outputFile(TableInfo tableInfo)
// 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!!
return projectPath + "/mi-resource/src/main/resources/mapping/" +
tableInfo.getEntityName() + "Mapper"
+ StringPool.DOT_XML;
);
5.启动
成
功
!
成功!
成功!
以上是关于推荐使用mybatis-plus逆向生成crud代码,让你开发效率提升50%的主要内容,如果未能解决你的问题,请参考以下文章
MyBatis-Plus——逆向工程之AutoGenerator代码生成器