转载自 https://blog.csdn.net/hua_faded/article/details/78900780

一、配置Maven pom.xml 文件

在pom.xml增加以下插件:

  1.  
    <build>
  2.  
    <finalName>zsxt</finalName>
  3.  
    <plugins>
  4.  
    <plugin>
  5.  
    <groupId>org.mybatis.generator</groupId>
  6.  
    <artifactId>mybatis-generator-maven-plugin</artifactId>
  7.  
    <version>1.3.2</version>
  8.  
    <configuration>
  9.  
    <verbose>true</verbose>
  10.  
    <overwrite>true</overwrite>
  11.  
    </configuration>
  12.  
    </plugin>
  13.  
    </plugins>
  14.  
    </build>

配置好Maven插件,下面需要配置插件需要配置文件

二、在maven项目下的src/main/resources 目录下建立名为 Maven的项目配置文件存放路径如下图:generatorConfig.xml和generator.properties配置文件,

Maven的项目配置文件存放路径如下图:

generatorConfig.xml代码如下:

  1.  
    <?xml version="1.0" encoding="UTF-8"?>
  2.  
    <!DOCTYPE generatorConfiguration
  3.  
    PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
  4.  
    "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
  5.  
     
  6.  
    <generatorConfiguration>
  7.  
    <!--导入属性配置-->
  8.  
    <properties resource="generator.properties"></properties>
  9.  
     
  10.  
    <!--指定特定数据库的jdbc驱动jar包的位置-->
  11.  
    <classPathEntry location="${jdbc.driverLocation}"/>
  12.  
     
  13.  
    <context id="default" targetRuntime="MyBatis3">
  14.  
     
  15.  
    <!-- optional,旨在创建class时,对注释进行控制 -->
  16.  
    <commentGenerator>
  17.  
    <property name="suppressDate" value="true"/>
  18.  
    <property name="suppressAllComments" value="true"/>
  19.  
    </commentGenerator>
  20.  
     
  21.  
    <!--jdbc的数据库连接 -->
  22.  
    <jdbcConnection
  23.  
    driverClass="${jdbc.driverClass}"
  24.  
    connectionURL="${jdbc.connectionURL}"
  25.  
    userId="${jdbc.userId}"
  26.  
    password="${jdbc.password}">
  27.  
    </jdbcConnection>
  28.  
     
  29.  
     
  30.  
    <!-- 非必需,类型处理器,在数据库类型和java类型之间的转换控制-->
  31.  
    <javaTypeResolver>
  32.  
    <property name="forceBigDecimals" value="false"/>
  33.  
    </javaTypeResolver>
  34.  
     
  35.  
     
  36.  
    <!-- Model模型生成器,用来生成含有主键key的类,记录类 以及查询Example类
  37.  
    targetPackage 指定生成的model生成所在的包名
  38.  
    targetProject 指定在该项目下所在的路径
  39.  
    -->
  40.  
    <javaModelGenerator targetPackage="com.slx.zsxt.model"
  41.  
    targetProject="src/main/java">
  42.  
     
  43.  
    <!-- 是否允许子包,即targetPackage.schemaName.tableName -->
  44.  
    <property name="enableSubPackages" value="false"/>
  45.  
    <!-- 是否对model添加 构造函数 -->
  46.  
    <property name="constructorBased" value="true"/>
  47.  
    <!-- 是否对类CHAR类型的列的数据进行trim操作 -->
  48.  
    <property name="trimStrings" value="true"/>
  49.  
    <!-- 建立的Model对象是否 不可改变 即生成的Model对象不会有 setter方法,只有构造方法 -->
  50.  
    <property name="immutable" value="false"/>
  51.  
    </javaModelGenerator>
  52.  
     
  53.  
    <!--Mapper映射文件生成所在的目录 为每一个数据库的表生成对应的SqlMap文件 -->
  54.  
    <sqlMapGenerator targetPackage="com.slx.zsxt.mapper"
  55.  
    targetProject="src/main/java">
  56.  
    <property name="enableSubPackages" value="false"/>
  57.  
    </sqlMapGenerator>
  58.  
     
  59.  
    <!-- 客户端代码,生成易于使用的针对Model对象和XML配置文件 的代码
  60.  
    type="ANNOTATEDMAPPER",生成Java Model 和基于注解的Mapper对象
  61.  
    type="MIXEDMAPPER",生成基于注解的Java Model 和相应的Mapper对象
  62.  
    type="XMLMAPPER",生成SQLMap XML文件和独立的Mapper接口
  63.  
    -->
  64.  
    <javaClientGenerator targetPackage="com.slx.zsxt.dao"
  65.  
    targetProject="src/main/java" type="XMLMAPPER">
  66.  
    <property name="enableSubPackages" value="true"/>
  67.  
    </javaClientGenerator>
  68.  
     
  69.  
     
  70.  
    <table tableName="reguser" domainObjectName="User"
  71.  
    enableCountByExample="false" enableUpdateByExample="false"
  72.  
    enableDeleteByExample="false" enableSelectByExample="false"
  73.  
    selectByExampleQueryId="false">
  74.  
    </table>
  75.  
     
  76.  
    <table tableName="adminuser" domainObjectName="Admin"
  77.  
    enableCountByExample="false" enableUpdateByExample="false"
  78.  
    enableDeleteByExample="false" enableSelectByExample="false"
  79.  
    selectByExampleQueryId="false">
  80.  
    </table>
  81.  
    <table tableName="configinfo" domainObjectName="Confinfo"
  82.  
    enableCountByExample="false" enableUpdateByExample="false"
  83.  
    enableDeleteByExample="false" enableSelectByExample="false"
  84.  
    selectByExampleQueryId="false">
  85.  
    </table>
  86.  
    <table tableName="grade" domainObjectName="Grade"
  87.  
    enableCountByExample="false" enableUpdateByExample="false"
  88.  
    enableDeleteByExample="false" enableSelectByExample="false"
  89.  
    selectByExampleQueryId="false">
  90.  
    </table>
  91.  
    <table tableName="gradelog" domainObjectName="Gradelog"
  92.  
    enableCountByExample="false" enableUpdateByExample="false"
  93.  
    enableDeleteByExample="false" enableSelectByExample="false"
  94.  
    selectByExampleQueryId="false">
  95.  
    </table>
  96.  
    <table tableName="reginfo" domainObjectName="Reginfo"
  97.  
    enableCountByExample="false" enableUpdateByExample="false"
  98.  
    enableDeleteByExample="false" enableSelectByExample="false"
  99.  
    selectByExampleQueryId="false">
  100.  
    </table>
  101.  
    </context>
  102.  
    </generatorConfiguration>

generator.propertites代码如下:

  1.  
    jdbc.driverLocation=E:\\mvn_home\\mysql\\mysql-connector-java\\5.1.20\\mysql-connector-java-5.1.20.jar
  2.  
    jdbc.driverClass=com.mysql.jdbc.Driver
  3.  
    jdbc.connectionURL=jdbc:mysql:///zsxt
  4.  
    jdbc.userId=root
  5.  
    jdbc.password=123456

 

三、在Intellij IDEA添加一个“Run运行”选项,使用maven运行mybatis-generator-maven-plugin插件

点击 菜单run中Edit Configurations,会出现

点击+号,选择maven,会出现

在name和Commond line分别填上如上图所示,apply和ok

最后点击generator,生成model,mapper,dao

逆向工程生成结果如下:

在IDEA中使用MyBatis Generator自动生成代码的更多相关文章

  1. idea中mybatis generator自动生成代码配置 数据库是sqlserver

    好长时间没有写博客了,最近公司要用java语言,开始学习java,属于初学者,今天主要记录一下mybatis generator自动生成代码,首先在如下图的目录中新建两个文件,如下图 generato ...

  2. SpringBoot 添加mybatis generator 自动生成代码插件

    自动生成数据层代码,提高开发效率 1.pom添加插件,并指定配置文件路径 <!-- mybatis generator 自动生成代码插件 --> <plugin> <gr ...

  3. SpringBoot入门篇--整合mybatis+generator自动生成代码+druid连接池+PageHelper分页插件

    原文链接 我们这一篇博客讲的是如何整合Springboot和Mybatis框架,然后使用generator自动生成mapper,pojo等文件.然后再使用阿里巴巴提供的开源连接池druid,这个连接池 ...

  4. IDEA Maven Mybatis generator 自动生成代码

    IDEA Maven Mybatis generator 自动生成代码 一.安装配置maven以及在Idea中配置maven 安装过程步骤可以看上面的博文,里面介绍得很详细. 二.建数据表 DROP ...

  5. IDEA Maven Mybatis generator 自动生成代码(实例讲解)(转)

    IDEA Maven Mybatis generator 自动生成代码(实例讲解) MyBatis Generator • 简称MBG,是一个专门为MyBatis框架使用者定制的代码生成器,可以快速的 ...

  6. 使用Mybatis Generator自动生成代码

    MyBatis Generator(MBG)是MyBatis MyBatis 和iBATIS的代码生成器.它将为所有版本的MyBatis以及版本2.2.0之后的iBATIS版本生成代码.它将内省数据库 ...

  7. Mybatis generator 自动生成代码(2)

    最近准备开始做一个项目,需要开始手动创建sql,于是将Mybatis generator 工具功能强化了下. 首先,这里引入到版本一点的包 <dependency> <groupId ...

  8. IDEA使用mybatis generator自动生成代码

    主要就三步: 1.pom 文件中引入jar包并配置 build 属性 <dependencies> <!-- 自动生产mapper Begin! --> <depende ...

  9. idea 中使用Mybatis Generator逆向工程生成代码

    通过MAVEN完成 Mybatis 逆向工程 1. POM文件中添加插件 在 pom 文件的build 标签中 添加 plugin 插件和 数据库连接 jdbc 的依赖. <build> ...

随机推荐

  1. C# 左右补零

    //不够4位补零 public static string addZero(int val) { string str = val + ""; int strLen = str.L ...

  2. Docker修改本地镜像与容器的存储位置

    这个方法里将通过软连接来实现. 首先停掉Docker服务: systemctl restart docker或者service docker stop 然后移动整个/var/lib/docker目录到 ...

  3. myibatis的坑--text类型的字段查询缺失

    问题:某个字段的类型为text(或者mediumtext,longtext)的时候,用selectByQuery语句查询出来的结果不包含该字段内容. myibatis 用mybatis-generat ...

  4. C#中Button.DialogResult属性

    窗体中的某个按钮,如果设置了DialogResult(不是设置为None),当窗体是通过ShowDialog方法显示的时候 则不必设置任何响应函数,单击按钮也可窗体.然后,该窗体的DialogResu ...

  5. 记一次sshd启动报错,Failed to start OpenSSH server daemon.

    sshd -t [root@mysql5-slave proj]# sshd -t @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ...

  6. MySQL安全机制 DDL DCL

    一.MySQL用户管理 1. 修改用户密码 ===root修改自己密码=== 方法一: # mysqladmin -uroot -p'123' password 'new_password' //12 ...

  7. 转:细说ASP.NET Windows身份认证

    转自:https://www.cnblogs.com/fish-li/archive/2012/05/07/2486840.html 细说ASP.NET Windows身份认证 阅读目录 开始 认识A ...

  8. shell循环(两个日期比较,改变某个特定日期来改变当前比较值)

    需求:从当前时间前6个月开始执行某个语句,直到执行到当前日期的前一天.  shell脚本如下: #!/bin/bash yesterday=`date -d -1day +%Y%m%d` sixmon ...

  9. 剑指offer题目解答合集(C++版)

    数组中重复的数字 二维数组中查找 字符串 替换空格 二叉树的编码和解码 从尾到头打印链表 重建二叉树 二叉树的下一个节点 2个栈实现队列 斐波那契数列 旋转数字 矩阵中的路径 机器人的运动范围 剪绳子 ...

  10. mysql 多个字段合并

    group_concat 函数默认“,”合并 select p.id as patent_id,p.application_no,p.name,p.inventer,group_concat(pi.` ...