亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

mybatis generator代碼生成器是怎樣的使用

發布時間:2021-09-26 09:48:05 來源:億速云 閱讀:151 作者:柒染 欄目:開發技術

mybatis generator代碼生成器是怎樣的使用,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

MyBatis Generator簡介

MyBatis Generator(MBG)是MyBatis MyBatis 和iBATIS的代碼生成器。它將為所有版本的MyBatis以及版本2.2.0之后的iBATIS版本生成代碼。它將內省數據庫表(或許多表),并將生成可用于訪問表的工件。這減少了設置對象和配置文件以與數據庫表交互的初始麻煩。MBG尋求對簡單CRUD(創建,檢索,更新,刪除)的大部分數據庫操作產生重大影響。您仍然需要為連接查詢或存儲過程手動編寫SQL和對象代碼。

MyBatis Generator下載

     1.源碼地址: https://github.com/mybatis/generator/releases

     2.官方文檔: http://www.mybatis.org/generator/index.html

下面看下mybatis generator代碼生成器的使用,開始結構圖如下:

mybatis generator代碼生成器是怎樣的使用

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>com.ding</groupId>
    <artifactId>mybatis_generator</artifactId>
    <version>1.0-SNAPSHOT</version>
<dependencies>
    <dependency>
        <groupId>org.mybatis.generator</groupId>
        <artifactId>mybatis-generator-core</artifactId>
        <version>1.3.7</version>
    </dependency>
    <dependency>
        <groupId>org.mybatis</groupId>
        <artifactId>mybatis</artifactId>
        <version>3.5.7</version>
        <scope>compile</scope>
    </dependency>


</dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.3.2</version>
                <configuration>
                    <!--配置文件的位置-->
                    <configurationFile>
                        src/main/resources/generatorConfig.xml
                    </configurationFile>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

數據庫

| Create Table                                       |
| -------------------------------------------------- |
| CREATE TABLE `student` (                           |
| `id` int(11) NOT NULL AUTO_INCREMENT,              |
| `NAME` varchar(20) DEFAULT NULL,                   |
| `age` int(11) DEFAULT NULL,                        |
| PRIMARY KEY (`id`)                                 |
| ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=u |

編寫generatorConfig.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="D:\develop\apache-maven-3.6.1\mvn_repository\mysql\mysql-connector-java\5.1.47\mysql-connector-java-5.1.47.jar"/>
    <!-- 一個數據庫一個context -->
    <context id="MYTables" targetRuntime="MyBatis3">
        <commentGenerator>
            <!--suppressDate:**阻止**生成的注釋包含時間戳-->
            <property name="suppressDate" value="true"/>
            <!--suppressAllComments:**阻止**生成注釋-->
            <property name="suppressAllComments" value="true"/>
        </commentGenerator>
        <!--數據庫鏈接地址賬號密碼-->
        <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                        connectionURL="jdbc:mysql://localhost:3306/db1"
                        userId="root" password="root">
        </jdbcConnection>
        <javaTypeResolver>
            <!--控制是否強制DECIMAL和NUMERIC類型的字段轉換為Java類型的
            java.math.BigDecimal-->
            <property name="forceBigDecimals" value="false"/>
        </javaTypeResolver>
        <!--生成Model類存放位置-->
        <javaModelGenerator targetPackage="com.ding.pojo"
                            targetProject="src\main\java">
            <property name="enableSubPackages" value="true"/>
            <property name="trimStrings" value="true"/>
        </javaModelGenerator>
        <!--生成映射文件存放位置-->
        <sqlMapGenerator targetPackage="mapper"
                         targetProject="src\main\resources">
            <property name="enableSubPackages" value="true"/>
        </sqlMapGenerator>
        <!--生成Dao類存放位置-->
        <javaClientGenerator type="XMLMAPPER" targetPackage="com.ding.dao"
                             targetProject="src\main\java">
            <property name="enableSubPackages" value="true"/>
        </javaClientGenerator>
        <!--生成對應表及類名-->
        <table tableName="student" domainObjectName="student" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"/>

    </context>
</generatorConfiguration>

生成

mybatis generator代碼生成器是怎樣的使用

生成后的結構圖

mybatis generator代碼生成器是怎樣的使用

世界不會因為你的疲憊,而停下它的腳步

關于mybatis generator代碼生成器是怎樣的使用問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

互助| 兴安县| 津市市| 广南县| 黄石市| 容城县| 万山特区| 资源县| 读书| 海兴县| 盐城市| 皋兰县| 湖州市| 萍乡市| 武陟县| 桃源县| 宁阳县| 尤溪县| 女性| 邢台县| 家居| 乌鲁木齐市| 荃湾区| 广南县| 清流县| 平凉市| 恩平市| 仙游县| 镇安县| 敦化市| 霍州市| 西峡县| 峨边| 沙坪坝区| 陈巴尔虎旗| 兴安盟| 惠水县| 桓仁| 涟水县| 鹤壁市| 永寿县|