文章目录
  1. 1. 在IDEA中使用Mybatis-generator插件快速生成代码
    1. 1.1. 1. 在pom中添加如下代码
    2. 1.2. 2.添加好之后,我们就需要配置mybatis-generator-config.xml配置文件中的代码
  2. 2. 上面的方式是直接通过插件的方式进行操作,官方也支持通过代码的方式配置代码的生成过程。
    1. 2.1. 1. 建立maven工程引入依赖:pom.xml如下
    2. 2.2. 2. 在resources下建立配置文件
    3. 2.3. 3. 写一个main方法,用于激活配置文件
    4. 2.4. 运行main方法看到日志如下,会扫描对应的表,在制定的目录下能够看到生成的代码文件

用过mybatis的程序员同学都能体会到这个类库强大而遍历的SQL操作能力,但是在使用过程中需要自定义大量的Mapper配置也是让大家头疼的事情,因此官方推出了一系列的工具让我们能够通过少量的配置生成模板化的代码,减轻开发的前期准备压力。

在IDEA中使用Mybatis-generator插件快速生成代码

使用这个插件可以快速生成一些代码,包含 实体类/Mapper接口/*Mapper.xml文件

首先,我们需要搭建一个Maven的项目。

1. 在pom中添加如下代码

<plugins>
  <plugin>
    <!--Mybatis-generator插件,用于自动生成Mapper和POJO-->
    <groupId>org.mybatis.generator</groupId>
    <artifactId>mybatis-generator-maven-plugin</artifactId>
    <version>1.3.2</version>
    <configuration>
      <!--配置文件的位置-->
      <configurationFile>yourLocation/mybatis-generator-config.xml</configurationFile>
      <verbose>true</verbose>
      <overwrite>true</overwrite>
    </configuration>
    <executions>
      <execution>
        <id>Generate MyBatis Artifacts</id>
        <goals>
          <goal>generate</goal>
        </goals>
      </execution>
    </executions>
    <dependencies>
      <dependency>
        <groupId>org.mybatis.generator</groupId>
        <artifactId>mybatis-generator-core</artifactId>
        <version>1.3.2</version>
      </dependency>
    </dependencies>
  </plugin>
</plugins>

注意,plugins标签是build标签的子标签

2.添加好之后,我们就需要配置mybatis-generator-config.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=""/>

    <context id="context" targetRuntime="MyBatis3">
        <commentGenerator>
            <property name="suppressAllComments" value="false"/>
            <property name="suppressDate" value="true"/>
        </commentGenerator>

        <!-- 数据库的相关配置 -->
        <jdbcConnection driverClass="" connectionURL="" userId="" password=""/>

        <javaTypeResolver>
            <property name="forceBigDecimals" value="false"/>
        </javaTypeResolver>

        <!-- 实体类生成的位置 -->
        <javaModelGenerator targetPackage="目标包" targetProject="目标项目classpath">
            <property name="enableSubPackages" value="false"/>
            <property name="trimStrings" value="true"/>
        </javaModelGenerator>

        <!-- *Mapper.xml 文件的位置 -->
        <sqlMapGenerator targetPackage="目标包" targetProject="目标项目classpath">
            <property name="enableSubPackages" value="false"/>
        </sqlMapGenerator>

        <!-- Mapper 接口文件的位置 -->
        <javaClientGenerator targetPackage="目标包" targetProject="目标项目classpath" type="XMLMAPPER">
            <property name="enableSubPackages" value="false"/>
        </javaClientGenerator>

        <!-- 相关表的配置 -->
        <table tableName="表名" enableCountByExample="false" enableDeleteByExample="false" enableSelectByExample="false"
               enableUpdateByExample="false"/>
    </context>
</generatorConfiguration>

随后,在idea的右侧栏点击Maven,选中添加的Mybatis-generator插件并运行或者直接执行mvn compile,就可以得到相应的代码。

上面的方式是直接通过插件的方式进行操作,官方也支持通过代码的方式配置代码的生成过程。

1. 建立maven工程引入依赖:pom.xml如下

<dependencies>
        <dependency>
            <groupId>org.mybatis.generator</groupId>
            <artifactId>mybatis-generator-core</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.2.8</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.34</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <version>1.7.7</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

2. 在resources下建立配置文件

<generatorConfiguration>
    <context id="testTables" targetRuntime="MyBatis3">
        <commentGenerator>
            <!-- 是否去除自动生成的注释 true:是 : false:否 -->
            <property name="suppressAllComments" value="true" />
        </commentGenerator>
        <!--数据库连接的信息:驱动类、连接地址、用户名、密码 -->
        <jdbcConnection driverClass="com.mysql.jdbc.Driver"
            connectionURL="jdbc:mysql://localhost:3306/mybatis" userId="root"
            password="root">
        </jdbcConnection>

        <!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 
            和 NUMERIC 类型解析为java.math.BigDecimal -->
        <javaTypeResolver>
            <property name="forceBigDecimals" value="false" />
        </javaTypeResolver>

        <!-- targetProject:生成POJO类的位置 -->
        <javaModelGenerator targetPackage="cn.snowalker.mybatis.pojo"
            targetProject="src/main/java">
            <!-- enableSubPackages:是否让schema作为包的后缀 -->
            <property name="enableSubPackages" value="false" />
            <!-- 从数据库返回的值被清理前后的空格 -->
            <property name="trimStrings" value="true" />
        </javaModelGenerator>
        <!-- targetProject:mapper映射文件生成的位置 -->
        <sqlMapGenerator targetPackage="cn.snowalker.mybatis.mapper"
            targetProject="src/main/java">
            <!-- enableSubPackages:是否让schema作为包的后缀 -->
            <property name="enableSubPackages" value="false" />
        </sqlMapGenerator>
        <!-- targetPackage:mapper接口生成的位置 -->
        <javaClientGenerator type="XMLMAPPER"
            targetPackage="cn.snowalker.mybatis.mapper" targetProject="src/main/java">
            <!-- enableSubPackages:是否让schema作为包的后缀 -->
            <property name="enableSubPackages" value="false" />
        </javaClientGenerator>
        <!-- 指定数据库表 -->
        <!-- <table schema="user" tableName="tb_user"></table> -->
        <table  tableName="%"></table>

    </context>
</generatorConfiguration>

表示扫描所有的表

3. 写一个main方法,用于激活配置文件

public static void main(String[] args) throws Exception {
       List<String> warnings = new ArrayList<String>();
       boolean overwrite = true;
       File configFile = Resources.getResourceAsFile("generatorConfig.xml");
       ConfigurationParser cp = new ConfigurationParser(warnings);
       Configuration config = cp.parseConfiguration(configFile);
       DefaultShellCallback callback = new DefaultShellCallback(overwrite);
       MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
       myBatisGenerator.generate(null);
   }

运行main方法看到日志如下,会扫描对应的表,在制定的目录下能够看到生成的代码文件

2017-11-07 22:52:29,597 [main] [org.mybatis.generator.internal.db.DatabaseIntrospector]-[DEBUG] 
Retrieving column information for table "%"
2017-11-07 22:52:29,793 [main] [org.mybatis.generator.internal.db.DatabaseIntrospector]-[DEBUG] 
Found column "id", data type 4, in table "mybatis..items"
2017-11-07 22:52:29,793 [main] [org.mybatis.generator.internal.db.DatabaseIntrospector]-[DEBUG] 
Found column "name", data type 12, in table "mybatis..items"
........
文章目录
  1. 1. 在IDEA中使用Mybatis-generator插件快速生成代码
    1. 1.1. 1. 在pom中添加如下代码
    2. 1.2. 2.添加好之后,我们就需要配置mybatis-generator-config.xml配置文件中的代码
  2. 2. 上面的方式是直接通过插件的方式进行操作,官方也支持通过代码的方式配置代码的生成过程。
    1. 2.1. 1. 建立maven工程引入依赖:pom.xml如下
    2. 2.2. 2. 在resources下建立配置文件
    3. 2.3. 3. 写一个main方法,用于激活配置文件
    4. 2.4. 运行main方法看到日志如下,会扫描对应的表,在制定的目录下能够看到生成的代码文件
Fork me on GitHub