我是靠谱客的博主 害羞外套,最近开发中收集的这篇文章主要介绍mybatis mybatis-plus-generator+clickhouse自动生成代码案例详解,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
mybatis-plus-generator + clickhouse 自动生成代码
依赖
<!--> mybatis-plus </!--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.3.1</version> </dependency> <!--> 代码模板 </!--> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> </dependency> <!--> mybatis-plus代码生成器 </!--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-generator</artifactId> <version>3.5.0</version> </dependency>
配置
mybatis-plus: configuration: map-underscore-to-camel-case: true auto-mapping-behavior: full log-impl: org.apache.ibatis.logging.stdout.StdOutImpl mapper-locations: classpath*:mapper/**/*Mapper.xml
CodeGenerator
public class CodeGenerator { private static final String REPLACE_LOCAL_PATH = "/target/test-classes/"; private static final String JAVA_PATH = "/src/main/java"; public static void main(String[] args) { // 获取项目路径 String projectPath = ClassLoader.getSystemResource("").getPath().replace(REPLACE_LOCAL_PATH, ""); // 全局配置 GlobalConfig gc = GeneratorBuilder.globalConfigBuilder() .fileOverride().openDir(false) .outputDir(projectPath + JAVA_PATH) .author("generator") .enableSwagger() .commentDate("yyyy-MM-dd").build(); // 数据源配置 DataSourceConfig dsc = new DataSourceConfig.Builder("jdbc:clickhouse://ip:port", "user", "password") .dbQuery(new ClickHouseQuery()).schema("schema").build(); // 包配置 PackageConfig pc = GeneratorBuilder.packageConfigBuilder().parent("com.study.clickhouse").build(); // 策略配置 StrategyConfig strategy = GeneratorBuilder.strategyConfigBuilder() .addInclude("table_name") .addTablePrefix(pc.getModuleName() + "_") .controllerBuilder().enableHyphenStyle() .entityBuilder() .naming(NamingStrategy.underline_to_camel) .columnNaming(NamingStrategy.underline_to_camel) .versionColumnName("version").logicDeleteColumnName("isDelete") .enableLombok() .build(); TemplateConfig templateConfig = GeneratorBuilder.templateConfigBuilder().build(); // 代码生成器 AutoGenerator mpg = new AutoGenerator(dsc).global(gc).strategy(strategy).template(templateConfig).packageInfo(pc); mpg.execute(new FreemarkerTemplateEngine()); } }
click相关参考
到此这篇关于mybatis mybatis-plus-generator+clickhouse自动生成代码案例详解的文章就介绍到这了,更多相关mybatis mybatis-plus-generator+clickhouse自动生成代码内容请搜索靠谱客以前的文章或继续浏览下面的相关文章希望大家以后多多支持靠谱客!
最后
以上就是害羞外套为你收集整理的mybatis mybatis-plus-generator+clickhouse自动生成代码案例详解的全部内容,希望文章能够帮你解决mybatis mybatis-plus-generator+clickhouse自动生成代码案例详解所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复