use of com.baomidou.mybatisplus.generator.config.PackageConfig in project spring-boot-web by wangchengming666.
the class MybatisPlusCodeGenerator method generateByTables.
private void generateByTables(String prefix, String packageName, String... tableNames) {
// user -> UserService, 设置成true: user -> IUserService
boolean serviceNameStartWithI = false;
GlobalConfig config = new GlobalConfig();
MybatisPlusConfig mybatis = new MybatisPlusConfig().setPrefix(prefix);
System.out.println(mybatis.properties());
// 数据库配置
String dbUrl = mybatis.getString("jdbc-url");
DataSourceConfig dataSourceConfig = new DataSourceConfig();
dataSourceConfig.setDbType(DbType.MYSQL).setUrl(dbUrl).setUsername(mybatis.getString("username")).setPassword(mybatis.getString("password")).setDriverName(mybatis.getString("driver-class-name"));
// 生成策略配置
StrategyConfig strategyConfig = new StrategyConfig();
// 全局大写命名 ORACLE 注意
strategyConfig.setCapitalMode(true).setEntityLombokModel(false).setNaming(NamingStrategy.underline_to_camel).setInclude(// 修改替换成你需要的表名,多个表名传数组
tableNames);
/**
* 设置超类
*/
// strategyConfig.setSuperEntityClass("com.myname.skeleton.commons.BaseObject");
// 输出目录
config.setActiveRecord(false).setOutputDir(System.getProperty("user.dir") + File.separatorChar + ".." + File.separatorChar + "framework-core" + File.separatorChar + "src" + File.separatorChar + "main" + File.separatorChar + "java").setFileOverride(true);
if (!serviceNameStartWithI) {
config.setServiceName("%sService");
}
TemplateConfig tc = new TemplateConfig();
// 不输出web层
tc.setController(null);
/**
* 如果是重新生成true,只生成 model<br/>
* false,全部生成
*/
if (false) {
tc.setMapper(null);
tc.setService(null);
tc.setServiceImpl(null);
tc.setXml(null);
}
new AutoGenerator().setGlobalConfig(config).setDataSource(dataSourceConfig).setStrategy(strategyConfig).setTemplate(tc).setPackageInfo(new PackageConfig().setParent(packageName).setXml("mapper").setMapper("mapper").setEntity("entity")).execute();
}
use of com.baomidou.mybatisplus.generator.config.PackageConfig in project shopzz by whoiszxl.
the class MyBatisCodeGenerator method main.
// 代码生成步骤四:直接运行就能生成了
public static void main(String[] args) {
// 1. 创建代码生成器
AutoGenerator generator = new AutoGenerator();
GlobalConfig gc = new GlobalConfig();
String projectPath = System.getProperty("user.dir");
System.out.println(projectPath);
gc.setOutputDir(projectPath + "/src/main/java");
gc.setAuthor("whoiszxl");
// 生成后是否打开资源管理器
gc.setOpen(false);
// 重新生成时文件是否覆盖
gc.setFileOverride(false);
// 去除Service生成的 I前缀
gc.setServiceName("%sService");
// 主键策略
gc.setIdType(IdType.ID_WORKER);
// 定义生成的实体类中日期类型
gc.setDateType(DateType.ONLY_DATE);
// 开启Swagger2模式
gc.setSwagger2(true);
generator.setGlobalConfig(gc);
// 3、数据源配置
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl(URL);
dsc.setDriverName("com.mysql.cj.jdbc.Driver");
dsc.setUsername(USERNAME);
dsc.setPassword(PASSWORD);
dsc.setDbType(DbType.MYSQL);
generator.setDataSource(dsc);
// 4、包配置
PackageConfig pc = new PackageConfig();
// pc.setModuleName("wms"); //模块名
pc.setParent("com.whoiszxl");
pc.setController("controller");
pc.setEntity("entity");
pc.setService("service");
pc.setMapper("mapper");
generator.setPackageInfo(pc);
// 5、策略配置
StrategyConfig strategy = new StrategyConfig();
strategy.setInclude(tableNames);
// 数据库表映射到实体的命名策略
strategy.setNaming(NamingStrategy.underline_to_camel);
// 生成实体时去掉表前缀
strategy.setTablePrefix(tablePrefix);
// 数据库表字段映射到实体的命名策略
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
// lombok 模型 @Accessors(chain = true) setter链式操作
strategy.setEntityLombokModel(true);
// restful api风格控制器
strategy.setRestControllerStyle(true);
// url中驼峰转连字符
strategy.setControllerMappingHyphenStyle(true);
generator.setStrategy(strategy);
// 6、执行
generator.execute();
}
use of com.baomidou.mybatisplus.generator.config.PackageConfig in project scaleph by flowerfine.
the class MybatisPlusGenerator method packageConfig.
/**
* 包配置
*
* @return PackageConfig
*/
private static PackageConfig packageConfig() {
PackageConfig pc = new PackageConfig();
pc.setModuleName(MODULE);
pc.setParent(BASE_PACKAGE);
pc.setXml("dao.mapper");
pc.setMapper("dao.mapper");
pc.setEntity("dao.entity");
pc.setService("service");
pc.setServiceImpl("service.impl");
pc.setController("api.controller");
return pc;
}
use of com.baomidou.mybatisplus.generator.config.PackageConfig in project tutorials-java by Artister.
the class MysqlGenerator method main.
/**
* RUN THIS
*/
public static void main(String[] args) {
// 代码生成器
AutoGenerator mpg = new AutoGenerator();
// 全局配置
GlobalConfig gc = new GlobalConfig();
String projectPath = System.getProperty("user.dir");
gc.setOutputDir(projectPath + "/mybatis-plus-sample-generator/src/main/java");
gc.setAuthor("jobob");
gc.setOpen(false);
mpg.setGlobalConfig(gc);
// 数据源配置
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://localhost:3306/ant?useUnicode=true&useSSL=false&characterEncoding=utf8");
// dsc.setSchemaName("public");
dsc.setDriverName("com.mysql.jdbc.Driver");
dsc.setUsername("root");
dsc.setPassword("1q2w3e4r");
mpg.setDataSource(dsc);
// 包配置
PackageConfig pc = new PackageConfig();
pc.setModuleName(scanner("模块名"));
pc.setParent("com.baomidou.mybatisplus.samples.generator");
mpg.setPackageInfo(pc);
// 自定义配置
InjectionConfig cfg = new InjectionConfig() {
@Override
public void initMap() {
// to do nothing
}
};
List<FileOutConfig> focList = new ArrayList<>();
focList.add(new FileOutConfig("/templates/mapper.xml.ftl") {
@Override
public String outputFile(TableInfo tableInfo) {
// 自定义输入文件名称
return projectPath + "/mybatis-plus-sample-generator/src/main/resources/mapper/" + pc.getModuleName() + "/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML;
}
});
cfg.setFileOutConfigList(focList);
mpg.setCfg(cfg);
mpg.setTemplate(new TemplateConfig().setXml(null));
// 策略配置
StrategyConfig strategy = new StrategyConfig();
strategy.setNaming(NamingStrategy.underline_to_camel);
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
strategy.setSuperEntityClass("com.baomidou.mybatisplus.samples.generator.common.BaseEntity");
strategy.setEntityLombokModel(true);
strategy.setSuperControllerClass("com.baomidou.mybatisplus.samples.generator.common.BaseController");
strategy.setInclude(scanner("表名"));
strategy.setSuperEntityColumns("id");
strategy.setControllerMappingHyphenStyle(true);
strategy.setTablePrefix(pc.getModuleName() + "_");
mpg.setStrategy(strategy);
// 选择 freemarker 引擎需要指定如下加,注意 pom 依赖必须有!
mpg.setTemplateEngine(new FreemarkerTemplateEngine());
mpg.execute();
}
Aggregations