• 使用Mybatis generator自动生成代码,仅限Oracle数据库


    一、使用Mybatis generator自动生成代码,仅限Oracle数据库

    使用Mybatis generator自动生成代码,仅限Oracle数据库

    一、在pom.xml文件中引入所需要的依赖和插件

    <dependency>
        <groupId>org.mybatis.generator</groupId>
        <artifactId>mybatis-generator-core</artifactId>
        <version>1.3.2</version>
    </dependency>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
     <plugin>
                    <groupId>org.mybatis.generator</groupId>
                    <artifactId>mybatis-generator-maven-plugin</artifactId>
                    <version>1.3.2</version>
                    <configuration>
                        <verbose>true</verbose>
                        <overwrite>true</overwrite>
                    </configuration>
    </plugin>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    二、在resource目录下创建generator.xml,如下
    在这里插入图片描述

    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
            "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd" >
    <generatorConfiguration>
    
        <!-- 指定数据连接驱动jar地址,这个是我的地址,需要你换成自己的  网上很多自己下-->
        <classPathEntry location="G:\maven-package\repository\oracle\ojdbc\1.0.0\ojdbc-1.0.0.jar"/>
    
        <!-- 一个数据库一个context -->
        <context id="infoGuardian">
    
    	<!-- 不需要改-->
            <commentGenerator>
                <property name="suppressDate" value="true"/>
                <property name="suppressAllComments" value="true" />
            </commentGenerator>
    
            <!-- jdbc连接 填写数据库的信息-->
            <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver"
                            connectionURL="xxx.xxx.xxx"
                            userId="xxx"
                            password="xxx" >
                <property name="nullCatalogMeansCurrent" value="true" />
            </jdbcConnection>
    
            <!-- 类型转换 -->
            <javaTypeResolver>
                <!-- 是否使用bigDecimal, false可自动转化以下类型(Long, Integer, Short, etc.) -->
                <property name="forceBigDecimals" value="false"/>
            </javaTypeResolver>
    
            <!-- 生成实体类地址 targetPackage需要替换成你自己的 -->
            <javaModelGenerator targetPackage="xxx.xxx.xxx"
                                targetProject="src/main/java">
                <property name="enableSubPackages" value="true"/>
                <property name="trimStrings" value="true"/>
            </javaModelGenerator>
    
            <!-- 生成mapxml文件 targetPackage需要替换成你自己的-->
            <sqlMapGenerator targetPackage="xxx.xxx.xxx">
                <property name="enableSubPackages" value="true"/>
            </sqlMapGenerator>
    
            <!-- 生成mapxml对应client,也就是接口dao  targetPackage需要替换成你自己的 -->
            <javaClientGenerator type="XMLMAPPER"
                                 targetPackage="xxx.xxx.xxx"
                                  targetProject="src/main/java">
                <property name="enableSubPackages" value="true"/>
            </javaClientGenerator>
            
            <!-- 一个表一个table,多个table再创建一个<table></table>标签即可
            schema:指定数据库名
            tableName:指定表名
            domainObjectName:指定生成的类名,与tableName保持一致即可
            -->
            <table
                    schema="xxx"
                    tableName="xxx"
                    domainObjectName="xxx"
                    enableCountByExample="false"
                    enableDeleteByExample="false"
                    enableSelectByExample="false"
                    enableUpdateByExample="false">
            </table>
    
        </context>
    
    </generatorConfiguration>
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70

    三、在IDEA中执行,双击mybatis-generator:generate,如果找不到,刷新一下插件
    在这里插入图片描述

    二、 mybatis generator为实体类生成自定义注释

    mybatis generator为实体类生成自定义注释(读取数据库字段的注释添加到实体类,不修改源码)

    我们都知道mybatis generator自动生成的注释没什么实际作用,而且还增加了代码量。如果能将注释从数据库中捞取到,不仅能很大程度上增加代码的可读性,而且减少了后期手动加注释的工作量。

    1、首先定义注释生成插件

    MyCommentGenerator.java

    package com.ilovey.mybatis.comment;
    
    
    import org.mybatis.generator.api.IntrospectedColumn;
    import org.mybatis.generator.api.IntrospectedTable;
    import org.mybatis.generator.api.dom.java.Field;
    import org.mybatis.generator.api.dom.java.InnerClass;
    import org.mybatis.generator.api.dom.java.Method;
    import org.mybatis.generator.internal.DefaultCommentGenerator;
    
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.Properties;
    
    /**
     * mybatis generator生成注释插件
     * 

    * Created by huhaichao on 2017/5/15. */ public class MyCommentGenerator extends DefaultCommentGenerator { private Properties properties; private Properties systemPro; private boolean suppressDate; private boolean suppressAllComments; private String currentDateStr; public MyCommentGenerator() { super(); properties = new Properties(); systemPro = System.getProperties(); suppressDate = false; suppressAllComments = false; currentDateStr = (new SimpleDateFormat("yyyy-MM-dd")).format(new Date()); } public void addFieldComment(Field field, IntrospectedTable introspectedTable, IntrospectedColumn introspectedColumn) { if (suppressAllComments) { return; } StringBuilder sb = new StringBuilder(); field.addJavaDocLine("/**"); sb.append(" * "); sb.append(introspectedColumn.getRemarks()); field.addJavaDocLine(sb.toString().replace("\n", " ")); field.addJavaDocLine(" */"); } public void addFieldComment(Field field, IntrospectedTable introspectedTable) { } public void addGeneralMethodComment(Method method, IntrospectedTable introspectedTable) { } public void addGetterComment(Method method, IntrospectedTable introspectedTable, IntrospectedColumn introspectedColumn) { } public void addSetterComment(Method method, IntrospectedTable introspectedTable, IntrospectedColumn introspectedColumn) { } public void addClassComment(InnerClass innerClass, IntrospectedTable introspectedTable, boolean markAsDoNotDelete) { } public void addClassComment(InnerClass innerClass, IntrospectedTable introspectedTable) { } }

    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76

    2、然后为mybatisgenerator配置插件

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
    
    <generatorConfiguration>
        <context id="context1">
            <plugin type="org.mybatis.generator.plugins.SerializablePlugin"/>
        
            <!-- 使用自定义的插件 -->
            <commentGenerator type="com.ilovey.mybatis.comment.MyCommentGenerator">
    
            </commentGenerator>
    
    
            <jdbcConnection driverClass="com.mysql.jdbc.Driver"
             connectionURL="jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF8"
             userId="root" password="123456">
            </jdbcConnection>
            
            <javaModelGenerator targetPackage="com.ilovey.biz.entity.base"
             targetProject="ilovey.biz/src/main/java"/>
            <sqlMapGenerator targetPackage="com.ilovey.biz.mapper.base"
             targetProject="ilovey.biz/src/main/resources"/>
            <javaClientGenerator targetPackage="com.ilovey.biz.mapper.base"
             targetProject="ilovey.biz/src/main/java" type="XMLMAPPER"/>
            
            <table tableName="us_user_info"  domainObjectName="UsUserInfo">
                <generatedKey column="id" sqlStatement="MySql" identity="true"/>
            </table>
    
    
        </context>
    </generatorConfiguration>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32

    3、使用mybatis generator自动生成代码

    由于使用的是maven项目,而且使用了了自定义的插件,所以采用 main方法启动,适用场景更对,而且能将代码生成到对应的工程目录下,免去拷贝的过程(当然也可以用maven插件、控制台、eclipse插件等多种方式启动)。

    注意:当前类所在的工程要添加mybatis generator的依赖包

    启动类如下

    package com.ilovey.mybatis;
    
    import org.mybatis.generator.api.MyBatisGenerator;
    import org.mybatis.generator.config.Configuration;
    import org.mybatis.generator.config.xml.ConfigurationParser;
    import org.mybatis.generator.internal.DefaultShellCallback;
    
    import java.io.InputStream;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * 运行此方法生成mybatis代码
     * 生成代码自动放入对应目录
     * 配置文件targetProject应从项目名称开始到要生成到的classpath
     * Created by huhaichao on 2017/5/15.
     */
    public class MyBatisGeneratorRun {
    
        public static void main(String[] args) throws Exception{
            MyBatisGeneratorRun app = new MyBatisGeneratorRun();
    
            System.out.println(app.getClass().getResource("/").getPath());
            app.generator();
            System.out.println(System.getProperty("user.dir"));
        }
    
        public void generator() throws Exception{
    
            List<String> warnings = new ArrayList<String>();
            boolean overwrite = true;
            InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("generatorConfig.xml");
            ConfigurationParser cp = new ConfigurationParser(warnings);
            Configuration config = cp.parseConfiguration(resourceAsStream);
            DefaultShellCallback callback = new DefaultShellCallback(overwrite);
            MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
            myBatisGenerator.generate(null);
    
            for(String warning:warnings){
                System.out.println(warning);
            }
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44

    再贴下项目的maven依赖,有需要的可以看下

    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>party.lovey</groupId>
        <artifactId>generator</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <packaging>jar</packaging>
    
        <dependencies>
            <dependency>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-core</artifactId>
                <version>1.3.6</version>
            </dependency>
    
            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <version>5.1.29</version>
            </dependency>
        </dependencies>
        
    </project>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    4、生成效果

    package com.ilovey.biz.entity.base;
    
    import java.io.Serializable;
    import java.util.Date;
    
    public class UsUserInfo implements Serializable {
        /**
         * 
         */
        private Integer id;
    
        /**
         * 用户id
         */
        private Integer userId;
    
        /**
         * 昵称
         */
        private String nickName;
    
        /**
         * 头像
         */
        private String headImage;
    
        /**
         * 手机号码
         */
        private String mobile;
    
        /**
         * 性别(0保密,1男,2女)
         */
        private Integer sex;
    
        /**
         * 地区
         */
        private Integer region;
    
        /**
         * 个性签名
         */
        private String signature;
    
        /**
         * 创建时间
         */
        private Date createTime;
    
        /**
         * 更新时间
         */
        private Date updateTime;
    
        //setter 和 getter方法省略
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
  • 相关阅读:
    【Bug】Unable to make field private final int java.time.LocalDate.year accessible
    网络调试工具编程实现
    智慧城市智慧灯杆IP网络广播可视紧急求助系统
    Springboot 中使用elasticsearch
    js 多个小程序之间互相跳转,a小程序带参跳转到b小程序中
    Linux操作文档——Kubeadm部署k8s集群
    如何设计一个网络爬虫?
    商城模板_商城模板网站html5_微信小程序商城模板
    什么是PCB中的光学定位点,不加可不可以?
    【Jenkins】Jenkins nohup执行失败
  • 原文地址:https://blog.csdn.net/qq_41787812/article/details/133244613