转载自 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. MyTomcat(手写服务器)

    Tomcat 是非常流行的 Web Server,它还是一个满足 Servlet 规范的容器.那么想一想,Tomcat 和我们的 Web 应用是什么关系? 从感性上来说,我们一般需要把 Web 应用打 ...

  2. 1.2.3 Excel中姓名处理,将名加密星号

    在对应的单元格中我们输入公式: =IF(LEN(A22)>2,REPLACE(A22,2,LEN(A22)-1,"**"),REPLACE(A22,2,LEN(A22)-1, ...

  3. Lock的lockInterruptibly()方法

    lockInterruptibly()方法能够中断等待获取锁的线程.当两个线程同时通过lock.lockInterruptibly()获取某个锁时,假若此时线程A获取到了锁,而线程B只有等待,那么对线 ...

  4. FPGA 中三角函数的实现

    FPGA 中三角函数的实现

  5. Delphi IdHTTP1下载文件防止假死 (

    在Form1中添加控件:两个Indy控件:IdAntiFreeze1,IdHTTP1;一个按钮 :Button1;一个进度条 :ProgressBar1 显示下载速度 procedure TForm1 ...

  6. threading模块小结

    这篇文章是别人文章的一个观后小结,不是什么原创. 首先第一个例子: import threading import time def worker():     print "worker& ...

  7. linux 6.5上创建新用户后,不能登陆?

    linux 6.5上创建新用户后,不能登陆? 使用root账户登陆却可以! [root@ log]# useradd mtdk[root@ log]# echo 123abc |passwd --st ...

  8. python3学习笔记五(列表2)

    参考http://www.runoob.com/python3/python3-list.html 嵌套列表 a = ['a','b','c']b = [1,2,3]x = [a, b]print(x ...

  9. Backbone 学习总结

    1.Backbone描述 官网描述:(1)Provides client-side app structure (2)Models to repents data (3)View to hook up ...

  10. centos 支持安装libsodium

    yum install epel-release -y yum install libsodium -y 然后没了.