摘要:文章目录前言一依赖二工具类结尾前言微软雅黑代码生成器,也叫逆向工程,是根据数据库里的表结构,自动生成对应的实体类映射文件和接口。微软雅黑看到很多小伙伴在为数据库生成实体类发愁,现分享给大家,提高开发效率。
代码生成器,也叫逆向工程,是根据数据库里的表结构,自动生成对应的实体类、映射文件和接口。
看到很多小伙伴在为数据库生成实体类发愁,现分享给大家,提高开发效率。
<dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-generator</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.30</version> </dependency>
package com.his.utils;import com.baomidou.mybatisplus.core.exceptions.MybatisPlusException;import com.baomidou.mybatisplus.core.toolkit.StringPool;import com.baomidou.mybatisplus.core.toolkit.StringUtils;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.NamingStrategy;import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine;import java.util.ArrayList;import java.util.List;import java.util.Scanner;/** * Mybatis plus代码自动生成 */public class MybatisPlusUtil { /** 作者 */ public static final String AUTHOR = "dd"; /** 类命名 */ /** * Entity命名 */ public static final String FILE_NAME_ENTITY = "%sEntity"; /** * MAPPER命名 */ public static final String FILE_NAME_MAPPER = "%sMapper"; /** * xml命名 */ public static final String FILE_NAME_XML = "%sMapper"; /** * Service命名 */ public static final String FILE_NAME_SERVICE = "%sService"; /** * ServiceImpl命名 */ public static final String FILE_NAME_SERVICE_IMPL = "%sDO"; /** * Controller命名 */ public static final String FILE_NAME_CONTROLLER = "%sController"; /** 包命名,可以根据自己的项目情况自定义生成后的存放路径 entity默认路径为父目录.entity mapper默认路径为父目录.mapper service默认路径为父目录.service serviceImpl默认路径为父目录.service.impl controller默认路径为父目录.controller */ /** * PARENT命名 */ public static final String PACKAGE_NAME_PARENT = "com.his"; /** * Entity命名 */ public static final String PACKAGE_NAME_ENTITY = "repository.entity.control"; /** * MAPPER命名 */ public static final String PACKAGE_NAME_MAPPER = "repository.mapper.control"; /** * xml命名 */ public static final String PACKAGE_NAME_XML = "sys"; /** * Service命名 */ public static final String PACKAGE_NAME_SERVICE = "domain.control"; /** * ServiceImpl命名 */ public static final String PACKAGE_NAME_SERVICE_IMPL = "domain.control"; /** * Controller命名 */ public static final String PACKAGE_NAME_CONTROLLER = "facade.controller.control"; /** * 读取控制台内容 */ private 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 + "!"); } /** * 运行这个main方法进行代码生成 */ public static void main(String[] args) { // 代码生成器 AutoGenerator mpg = new AutoGenerator(); // 全局配置 GlobalConfig gc = new GlobalConfig(); String projectPath = System.getProperty("user.dir"); gc.setOutputDir(projectPath + "/src/main/java"); gc.setFileOverride(true); gc.setAuthor(AUTHOR); gc.setOpen(false); gc.setActiveRecord(false);// 不需要ActiveRecord特性的请改为false gc.setEnableCache(false);// XML 二级缓存 gc.setSwagger2(true); // 实体属性 Swagger2 注解 gc.setBaseResultMap(true); gc.setBaseColumnList(true); gc.setEntityName(FILE_NAME_ENTITY); gc.setMapperName(FILE_NAME_MAPPER); gc.setXmlName(FILE_NAME_XML); gc.setServiceName(FILE_NAME_SERVICE); gc.setServiceImplName(FILE_NAME_SERVICE_IMPL); gc.setControllerName(FILE_NAME_CONTROLLER); mpg.setGlobalConfig(gc); // 数据源配置 DataSourceConfig dsc = new DataSourceConfig(); dsc.setUrl("jdbc:oracle:thin:@ip:port/test"); dsc.setDriverName("oracle.jdbc.OracleDriver"); dsc.setUsername("user"); dsc.setPassword("pass"); mpg.setDataSource(dsc); //包配置 PackageConfig pc = new PackageConfig(); pc.setModuleName(null); pc.setParent(PACKAGE_NAME_PARENT); pc.setController(PACKAGE_NAME_CONTROLLER); pc.setService(PACKAGE_NAME_SERVICE); pc.setServiceImpl(PACKAGE_NAME_SERVICE_IMPL); pc.setMapper(PACKAGE_NAME_MAPPER); pc.setEntity(PACKAGE_NAME_ENTITY); pc.setXml(PACKAGE_NAME_XML); mpg.setPackageInfo(pc); // 策略配置 StrategyConfig strategy = new StrategyConfig(); strategy.setNaming(NamingStrategy.underline_to_camel); strategy.setColumnNaming(NamingStrategy.underline_to_camel); //strategy.setEntityLombokModel(true); strategy.setRestControllerStyle(true); strategy.setInclude(scanner("表名,多个英文逗号分割").split(",")); strategy.setControllerMappingHyphenStyle(true); // 设置表前缀 strategy.setTablePrefix("IEMR_"); mpg.setStrategy(strategy); mpg.setTemplateEngine(new FreemarkerTemplateEngine()); // 自定义配置 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/" + "/" + tableInfo.getMapperName() + StringPool.DOT_XML; } }); cfg.setFileOutConfigList(focList); mpg.setCfg(cfg); // 配置模板 TemplateConfig templateConfig = new TemplateConfig(); templateConfig.setXml(null); mpg.setTemplate(templateConfig); mpg.execute(); }}
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/124717.html
摘要:读取控制台内容请输入请输入正确的代码生成器全局配置实体属性注解数据源配置包配置这里有个模块名的配置,可以注释掉不用。 最近在研究mybatis,然后就去找简化mybatis开发的工具,发现就有通用Mapper和mybatis-plus两个比较好的可是使用,可是经过对比发现还是mybatis-plus比较好,个人觉得,勿喷。。。 集成还是非常简单的,然后就在研究怎么分页,开始研究通用ma...
摘要:是最流行的关系型数据库管理系统之一,在应用方面,是最好的,关系数据库管理系统应用软件。是一种关系数据库管理系统,关系数据库将数据保存在不同的表中,而不是将所有数据放在一个大仓库内,这样就增加了速度并提高了灵活性。 本章主要是对MyBatis-Plus的初步介绍,包括一些背景知识、环境搭建、初步使用等知识和例子。对于背景知识,主要包含对MyBatis-Plus的特性介绍、为什么使用MyB...
摘要:最近在研究,顺便就会看看数据库连接这一块的知识,所以当我发现有通用和这两款网络上比较火的简化开发的优秀软件之后。先创建一个的项目,可以参考我之前的文章的简单教程一项目的创建。打开文件,将最新的相关的包都引用进来。 最近在研究springboot,顺便就会看看数据库连接这一块的知识 ,所以当我发现有通用Mapper和MybatisPlus这两款网络上比较火的简化mybatis开发的优秀软...
阅读 890·2021-11-24 09:38
阅读 841·2021-11-23 09:51
阅读 2913·2021-11-16 11:44
阅读 1707·2021-09-22 15:52
阅读 1600·2021-09-10 11:20
阅读 1341·2019-08-30 13:47
阅读 1258·2019-08-29 12:36
阅读 3274·2019-08-26 10:43