小白的springboot之路(四)、mybatis-generator自動生成mapper和model、dao

0-、前言

  在用mybatis開發項目中,數據庫動輒上百張數據表,若是你一個一個去手動編寫,比較耗費時間;還好,咱們有mybatis-generator插件,只需簡單幾步就能自動生成mybatis的model、mapper和Dao文件,很方便;java

  題外話:注意,mybatis-generator的項目建議單獨去建一個項目,生成model、mapper、dao後再根據須要拷到實際項目中去;不要集成到實際項目中,以避免對實際項目形成影響,由於集成在項目中,一不當心生成了,所有覆蓋了原來的文件,那你本身添加的不少功能代碼就game over了,切勿冒險;

1-、使用方法:

  使用mybatis-generator很是簡單,只需幾步便可:mysql

1-一、新建一個項目,添加依賴:

注意,我指定了版本,其餘版本屢次失敗,我使用1.3.7版本,穩定好用不失敗;裏面的<configurationFile>是咱們下面新建的XML配置文件地址git

<dependencies>

            <!-- 一、添加mybatis.generator依賴 -->
            <dependency>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-core</artifactId>
                <version>1.3.7</version>
            </dependency>

        </dependencies>

        <build>

            <plugins>

                <!--二、添加mybatis.generator插件 -->
                <plugin>
                    <groupId>org.mybatis.generator</groupId>
                    <artifactId>mybatis-generator-maven-plugin</artifactId>
                    <version>1.3.7</version>
                    <configuration>
                        <!--配置XML文件地址,如下爲根目錄,若是是resources,則爲:src/main/resources/generatorConfig.xml -->
<!--                        <configurationFile>generatorConfig.xml</configurationFile>-->
                        <configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
                        <!--容許移動生成的文件 -->
                        <verbose>true</verbose>
                        <!--是否覆蓋 -->
                        <overwrite>true</overwrite>
                    </configuration>
                </plugin>

            </plugins>
        </build>

1-二、添加配置文件:

都加了註釋,本身看註釋便可,很少解釋,須要說一下的是<!---6 ->,github

A、若是是單個生成表生成,就像6-1一個一個表添加就行;sql

B、若是要批量生成,就直接像6-2同樣就行,能夠用%匹配任意表:tableName="%"匹配全部表;tableName="t_sys_%"表示匹配全部t_sys_開頭的表;能夠根據本身須要來匹配任意表來生成;數據庫

<?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>
    <!--一、指定特定數據庫的jdbc驅動jar包的位置千萬千萬要指定正確,否則就建立不了文件-->
    <classPathEntry location="C:\maven\repository\mysql\mysql-connector-java\5.1.47\mysql-connector-java-5.1.47.jar"/>

    <context id="DB2Tables" targetRuntime="MyBatis3">
        <commentGenerator>
            <property name="suppressDate" value="true"/>
            <!-- 是否去除自動生成的註釋 true:是 : false:否 -->
            <property name="suppressAllComments" value="true" />
        </commentGenerator>

        <!--二、配置數據庫鏈接信息 -->
        <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/mydb" userId="root" password="88888888">
        </jdbcConnection>

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

        <!--三、指定Model生成的位置 -->
        <javaModelGenerator targetPackage="com.anson.model" targetProject=".\src\main\java">
            <property name="enableSubPackages" value="true" />
            <property name="trimStrings" value="true" />
        </javaModelGenerator>


        <!--四、指定sql映射文件生成的位置 -->
        <sqlMapGenerator targetPackage="mapper" targetProject=".\src\main\resources">
            <property name="enableSubPackages" value="true" />
        </sqlMapGenerator>

        <!--4.一、若是放程序包中-->
<!-- <sqlMapGenerator -->
<!-- targetPackage="com.anson.mapper"-->
<!-- targetProject=".\src\main\java">-->
<!-- <property name="enableSubPackages" value="true"/>-->
<!-- </sqlMapGenerator>-->


        <!--五、指定dao接口生成的位置 .mapper接口 -->
        <!-- type生成類型含義,項目中基本都是用:XMLMAPPER type="ANNOTATEDMAPPER",生成Java Model 和基於註解的Mapper對象 type="MIXEDMAPPER",生成基於註解的Java Model 和相應的Mapper對象 type="XMLMAPPER",生成SQLMap XML文件和獨立的Mapper接口 -->
        <javaClientGenerator type="XMLMAPPER" targetPackage="com.anson.dao" targetProject=".\src\main\java">
            <property name="enableSubPackages" value="true" />
        </javaClientGenerator>


        <!-- 6-一、單個表生成策略 -->
        <!--生成對應表及類名-->
<!-- <table tableName="t_dept" domainObjectName="Dept" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false">-->
        <!-- </table>-->

        <!-- 6-二、整個數據庫批量生成策略 -->
        <table tableName="%" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false">
            <property name="useActualColumnNames" value="false" />
            <!-- 數據庫表主鍵 -->
            <!-- <generatedKey column="id" sqlStatement="Mysql" identity="true" /> -->
        </table>

    </context>
</generatorConfiguration>

好,完畢,就這麼簡單,下面開始生成:mybatis

1-三、在右側maven中找到插件,直接雙擊就能生成了

 

 雙擊成功生成後,能夠看到項目中在本身XML文件填寫的包和路徑下,生成了相關文件app

 

 把相關文件烤到你的項目中就能夠直接使用了,怎麼樣,是否是很神奇,是否是很簡單~dom

 

 源碼地址:https://github.com/anson-yang/cloverDemo.gitmaven

相關文章
相關標籤/搜索