Mybatis-plus代码生成器
1.引入依赖
// mybatis plus 以及数据库链接驱动,代码生成器等(如果使用maven,则换成对应的写法)
compile group: 'com.baomidou', name: 'mybatis-plus-boot-starter', version: '3.3.2'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.17'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-jdbc', version: '2.3.1.RELEASE'
compile group: 'com.baomidou', name: 'mybatis-plus-generator', version: '3.3.2'
2.配置yml
tip : 这里 配置的有两个东西,一个是逻辑删除的默认值,另外一个是 控制台可以输出执行的sql语句
mybatis-plus:
global-config:
db-config:
logic-delete-value: 1 #逻辑删除
logic-not-delete-value: 0
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #控制台输出sql
3.注入自动填充字段值的Handler
import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
import org.apache.ibatis.reflection.MetaObject;
import org.springframework.stereotype.Component;
import java.util.Date;
/**
* @Description: mybatis 自动填充处理类
* @Author KevinLee
* @Date 2020/12/10 8:24
*/
@Component
public class MyMetaObjectHandler implements MetaObjectHandler {
@Override
public void insertFill(MetaObject metaObject) {
this.setFieldValByName("createDate",new Date(),metaObject);
this.setFieldValByName("updateDate",new Date(),metaObject);
this.setFieldValByName("isDel","0",metaObject);
}
@Override
public void updateFill(MetaObject metaObject) {
this.setFieldValByName("updateDate",new Date(),metaObject);
}
}
4.编写代码生成器
tip:这个代码生成器最好 每个工程都有,因为我这里涉及到逻辑删除,以及自动创建时间和更新时间。我把这些都放在一个BaseEntity的,然后 生成的实体类都会去继承这个类,当然,在使用代码生成器的时候你可以手动控制是否需要继承这个类(why?因为逻辑删除,以及自动填充更新时间这些都是需要在字段上加入mybatiplus的注解,使用代码生成器的时候生成不了这些,所以可以提出去,自己维护,这样当需要覆盖生成的实体类时,就不用去手动增加这些注解了)
BaseEntity:
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import java.util.Date;
/**
* @Description: 基础实体类
* @Author KevinLee
* @Date 2020/12/9 13:51
*/
@Data
public class BaseEntity {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
//插入数据时,默认数据 未删除
@TableLogic
@TableField(fill = FieldFill.INSERT)
private String isDel;
@TableField(fill = FieldFill.INSERT)
private Date createDate;
@TableField(fill = FieldFill.INSERT_UPDATE)
private Date updateDate;
}
代码生成器
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.builder.ConfigBuilder;
import com.baomidou.mybatisplus.generator.config.po.TableInfo;
import com.baomidou.mybatisplus.generator.config.rules.FileType;
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;
import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine;
import org.apache.commons.lang3.StringUtils;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
/**
* @Description: mybatis 代码生成器
* @Author KevinLee
* @Date 2020/12/9 10:24
*/
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 + "!");
}
public static void main(String[] args) {
// 代码生成器
AutoGenerator mpg = new AutoGenerator();
// 全局配置
GlobalConfig gc = new GlobalConfig();
// String projectPath = System.getProperty("user.dir");
//TODO ============= 修改成你的项目路径
String projectPath = "D:\\workspace\\project\\gradle-spring-test\\gradle-spring\\my-mybatis-plus";
gc.setOutputDir(projectPath + "/src/main/java");
gc.setAuthor("KevinLee");
gc.setOpen(false);
//重写已经存在的文件
gc.setFileOverride(true);
// gc.setSwagger2(true); 实体属性 Swagger2 注解
mpg.setGlobalConfig(gc);
// 数据源配置
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://192.168.254.145:9345/kevin-test?useUnicode=true&useSSL=false&characterEncoding=utf8");
// dsc.setSchemaName("public");
dsc.setDriverName("com.mysql.jdbc.Driver");
dsc.setUsername("root");
dsc.setPassword("admin123");
mpg.setDataSource(dsc);
// 包配置
PackageConfig pc = new PackageConfig();
pc.setModuleName(scanner("模块名"));
//TODO=========修改成你的包基础路径
pc.setParent("com.my.mybatisplus");
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;
}
});
//TODO 再次运行代码生成器,判断哪些文件需要覆盖
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;
// 判断自定义文件夹是否需要创建,这里调用默认的方法
checkDir(filePath);
//对于已存在的文件,只需重复生成 entity 和 mapper.xml
File file = new File(filePath);
boolean exist = file.exists();
if (exist) {
// if (filePath.endsWith("Mapper.xml")||FileType.ENTITY==fileType){
if (FileType.ENTITY == fileType) {
return true;
} else {
return false;
}
}
//不存在的文件都需要创建
return true;
}
});
cfg.setFileOutConfigList(focList);
mpg.setCfg(cfg);
// 配置模板
TemplateConfig templateConfig = new TemplateConfig();
// 配置自定义输出模板
//指定自定义模板路径,注意不要带上.ftl/.vm, 会根据使用的模板引擎自动识别
// templateConfig.setEntity("templates/entity2.java");
// templateConfig.setService();
// templateConfig.setController();
templateConfig.setXml(null);
mpg.setTemplate(templateConfig);
String isExtend = scanner("是否需要继承基础实体Entity(包含逻辑删除字段,以及创建时间等字段),1需要 2不需要");
// 策略配置
StrategyConfig strategy = new StrategyConfig();
strategy.setNaming(NamingStrategy.underline_to_camel);
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
strategy.setTablePrefix("tb_");
//继承基础类
if (isExtend.equals("1")) {
strategy.setSuperEntityClass(BaseEntity.class);
//基础类的列名需要写在这里
strategy.setSuperEntityColumns("id", "is_del","create_date","update_date");
}
strategy.setEntityLombokModel(true);
strategy.setRestControllerStyle(true);
// 公共父类
// strategy.setSuperControllerClass("你自己的父类控制器,没有就不用设置!");
// 写于父类中的公共字段
// strategy.setSuperEntityColumns("id");
strategy.setInclude(scanner("表名,多个英文逗号分割").split(","));
strategy.setControllerMappingHyphenStyle(true);
strategy.setTablePrefix(pc.getModuleName() + "_");
mpg.setStrategy(strategy);
mpg.setTemplateEngine(new FreemarkerTemplateEngine());
mpg.execute();
}
}