use of com.baomidou.mybatisplus.generator.engine.VelocityTemplateEngine in project matecloud by matevip.
the class GeneratorUtil method execute.
public static void execute(CodeConfig config) {
AutoGenerator mpg = new AutoGenerator();
// 全局配置
GlobalConfig gc = new GlobalConfig();
gc.setOutputDir(config.getOutputDir());
gc.setFileOverride(true);
// ActiveRecord特性
gc.setActiveRecord(false);
// XML ResultMap
gc.setBaseResultMap(true);
// XML columList
gc.setBaseColumnList(true);
gc.setEnableCache(false);
// 自动打开输出目录
gc.setOpen(false);
gc.setAuthor("pangu");
gc.setSwagger2(true);
// 主键策略
gc.setIdType(IdType.AUTO);
// 自定义文件命名,注意 %s 会自动填充表实体属性!
gc.setServiceName("I%sService");
gc.setServiceImplName("%sServiceImpl");
gc.setMapperName("%sMapper");
gc.setXmlName("%sMapper");
mpg.setGlobalConfig(gc);
// 数据源配置
DataSourceConfig dsc = new DataSourceConfig();
dsc.setDbType(config.getDbType());
dsc.setDriverName(config.getDriverName());
dsc.setUrl(config.getUrl());
dsc.setUsername(config.getUsername());
dsc.setPassword(config.getPassword());
dsc.setTypeConvert(new MySqlTypeConvert() {
// 自定义数据库表字段类型转换【可选】
@Override
public DbColumnType processTypeConvert(GlobalConfig globalConfig, String fieldType) {
// 将数据库中datetime转换成date
if (fieldType.toLowerCase().contains("datetime")) {
return DbColumnType.LOCAL_DATE_TIME;
}
return (DbColumnType) super.processTypeConvert(globalConfig, fieldType);
}
});
mpg.setDataSource(dsc);
// 包配置
PackageConfig pc = new PackageConfig();
// 此处设置包名,需要自定义
pc.setParent(config.getPackageName());
pc.setXml("mapper");
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 config.getOutputDir() + "/src/main/resources/mapper/"
// + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML;
// }
// });
// /*
// cfg.setFileCreate(new IFileCreate() {
// @Override
// public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) {
// // 判断自定义文件夹是否需要创建
// checkDir("调用默认方法创建的目录");
// return false;
// }
// });
// */
// cfg.setFileOutConfigList(focList);
// mpg.setCfg(cfg);
// 配置模板
// TemplateConfig templateConfig = new TemplateConfig();
// 配置自定义输出模板
// 指定自定义模板路径,注意不要带上.ftl/.vm, 会根据使用的模板引擎自动识别
// templateConfig.setEntity("templates/entity2.java");
// templateConfig.setService();
// templateConfig.setController();
// templateConfig.setXml("mapper");
// mpg.setTemplate(templateConfig);
// 策略配置
StrategyConfig strategy = new StrategyConfig();
strategy.setNaming(NamingStrategy.underline_to_camel);
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
strategy.setSuperEntityClass("vip.mate.core.database.entity.BaseEntity");
strategy.setEntityLombokModel(true);
strategy.setRestControllerStyle(true);
// 公共父类
strategy.setSuperControllerClass("vip.mate.core.web.controller.BaseController");
// 写于父类中的公共字段
strategy.setSuperEntityColumns("id");
strategy.setInclude(config.getTableName().split(","));
strategy.setControllerMappingHyphenStyle(true);
strategy.setTablePrefix(config.getPrefix());
// strategy.setTablePrefix(pc.getModuleName() + "_");
mpg.setStrategy(strategy);
mpg.setTemplateEngine(new VelocityTemplateEngine());
mpg.execute();
}
use of com.baomidou.mybatisplus.generator.engine.VelocityTemplateEngine in project EVA-API by PKAQ-LAB.
the class SingleCodeGenerator method main.
/**
* <p>
* 读取控制台内容
* </p>
*/
public static void main(String[] args) {
// 代码生成器
AutoGenerator mpg = new AutoGenerator();
// 全局配置
GlobalConfig gc = new GlobalConfig();
String projectPath = System.getProperty("user.dir");
gc.setOutputDir(projectPath + "/eva-generator/src/main/java");
gc.setAuthor(AUTHOR);
// 是否打开输出目录
gc.setOpen(false);
// 启用swagger
gc.setSwagger2(true);
gc.setServiceName("%sService");
// 不生成serviceImpl类
gc.setServiceImplName(null);
gc.setControllerName("%sCtrl");
gc.setEntityName("%sEntity");
mpg.setGlobalConfig(gc);
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl(URL);
dsc.setDriverName(DRIVER);
dsc.setUsername(USER);
dsc.setPassword(PWD);
mpg.setDataSource(dsc);
// 包配置
PackageConfig pc = new PackageConfig();
// TODO 模块包名
pc.setModuleName("biz");
pc.setParent(BASEPKG);
mpg.setPackageInfo(pc);
// 模板配置
TemplateConfig templateConfig = new TemplateConfig();
// xml模板
templateConfig.setXml(null);
// entity模板
templateConfig.setEntity("/templates/mybatis/listModal/java/entity.java");
// controller模板
templateConfig.setController("templates/mybatis/listModal/java/controller.java");
// mapper模板
templateConfig.setMapper("/templates/mybatis/listModal/java/mapper.java");
// service模板
templateConfig.setService("/templates/mybatis/listModal/java/service.java");
templateConfig.setServiceImpl(null);
// 自定义配置
InjectionConfig cfg = new InjectionConfig() {
@Override
public void initMap() {
Map<String, Object> map = new HashMap<>(1);
map.put("sysName", SYS_NAME);
this.setMap(map);
}
};
mpg.setCfg(cfg);
mpg.setTemplate(templateConfig);
// 策略配置
StrategyConfig strategy = new StrategyConfig();
strategy.setNaming(NamingStrategy.underline_to_camel);
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
// 定义基类
strategy.setSuperEntityClass("io.nerv.core.mvc.entity.mybatis.StdBaseEntity");
strategy.setSuperControllerClass("io.nerv.core.mvc.ctrl.mybatis.StdBaseCtrl");
strategy.setSuperMapperClass("com.baomidou.mybatisplus.core.mapper.BaseMapper");
strategy.setSuperServiceClass("io.nerv.core.mvc.service.mybatis.StdBaseService");
strategy.setEntityLombokModel(true);
strategy.setRestControllerStyle(true);
strategy.setControllerMappingHyphenStyle(true);
// TODO 表名
strategy.setInclude("log_biz");
strategy.setSuperEntityColumns("ID", "CREATE_BY", "GMT_CREATE", "MODIFY_BY", "GMT_MODIFY", "REMARK");
// TODO 去除表前缀
strategy.setTablePrefix("log_");
mpg.setStrategy(strategy);
mpg.setTemplateEngine(new VelocityTemplateEngine());
mpg.execute();
}
Aggregations