1. 程式人生 > >第7步 mybatis-generator dao層生成器

第7步 mybatis-generator dao層生成器

 

自動生成 pojo

mapper(dao層實現)   dao

第一步   配置這個外掛在pom中

 

第二步複製  generateConfig.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>
    <!--匯入屬性配置   匯入檔案   資料庫的相關 使用者名稱密碼等   -->
    <properties resource="datasource.properties"></properties>

    <!--指定特定資料庫的jdbc驅動jar包的位置 ${db.driverLocation} 上面匯入包的 配置  -->
    <classPathEntry location="${db.driverLocation}"/>
    <!--  使用預設就可以了  -->
    <context id="default" targetRuntime="MyBatis3">

        <!-- optional,旨在建立class時,對註釋進行控制 -->
        <commentGenerator>
            <property name="suppressDate" value="true"/>
            <property name="suppressAllComments" value="true"/>
        </commentGenerator>

        <!--jdbc的資料庫連線   配置連線 -->
        <jdbcConnection
                driverClass="${db.driverClassName}"
                connectionURL="${db.url}"
                userId="${db.username}"
                password="${db.password}">
        </jdbcConnection>


        <!-- 非必需,型別處理器,在資料庫型別和java型別之間的轉換控制-->
        <javaTypeResolver>
            <property name="forceBigDecimals" value="false"/>
        </javaTypeResolver>


        <!--這裡最重要 Model模型生成器,用來生成含有主鍵key的類,記錄類 以及查詢Example類
            targetPackage     指定生成的model生成所在的包名
            targetProject     指定在該專案下所在的路徑
        -->
        <!--<javaModelGenerator targetPackage="com.mmall.com.zjyouth.pojo" targetProject=".\src\main\java">-->
        <!--  自動生成的實體類    targetPackage="com.zjyouth.pojo" 放到 這個包下面
             targetProject="./src/main/java"   生成目標的專案
           -->
        <javaModelGenerator targetPackage="com.zjyouth.pojo" targetProject="./src/main/java">
            <!-- 是否允許子包,即targetPackage.schemaName.tableName -->
            <property name="enableSubPackages" value="false"/>
            <!-- 是否對model新增 建構函式 -->
            <property name="constructorBased" value="true"/>
            <!-- 是否對類CHAR型別的列的資料進行trim操作    trim操作:字串去前後的空格       -->
            <property name="trimStrings" value="true"/>
            <!-- 建立的Model物件是否 不可改變   true:只有get方法不可變物件
            即生成的Model物件不會有 setter方法,只有構造方法 -->
            <property name="immutable" value="false"/>
        </javaModelGenerator>


        <!--mapper對映檔案生成所在的目錄 為每一個數據庫的表生成對應的SqlMap檔案    就是dao層的實現 -->
        <!--  <sqlMapGenerator targetPackage="mappers" targetProject=".\src\main\resources">
              ./src/main/resources/mappers      生成的mapper在這個目錄下面
              這個是dao層介面的實現sql
        -->
        <sqlMapGenerator targetPackage="mappers" targetProject="./src/main/resources">
            <property name="enableSubPackages" value="false"/>
        </sqlMapGenerator>


        <!-- 客戶端程式碼,生成易於使用的針對Model物件和XML配置檔案 的程式碼
                type="ANNOTATEDMAPPER",生成Java Model 和基於註解的Mapper物件
                type="MIXEDMAPPER",生成基於註解的Java Model 和相應的Mapper物件
                type="XMLMAPPER",生成SQLMap XML檔案和獨立的Mapper介面

                com.zjyouth.dao  這個是dao層介面
        -->

        <!-- targetPackage:mapper介面dao生成的位置 -->
        <!--<javaClientGenerator type="XMLMAPPER" targetPackage="com.mmall.com.zjyouth.dao" targetProject=".\src\main\java">-->
        <javaClientGenerator type="XMLMAPPER" targetPackage="com.zjyouth.dao" targetProject="./src/main/java">
            <!-- enableSubPackages:是否讓schema作為包的字尾 -->
            <property name="enableSubPackages" value="false" />
        </javaClientGenerator>


        <!--   這裡有多少表配置多少個
            配置表
            tableName="mmall_shipping"   必須和資料庫名完全一樣
            domainObjectName="Shipping"   生成java類的類名
            enableCountByExample="false"  是否通過物件可以查他的數量
            enableUpdateByExample="false"  是否通過物件進行update
            都使用預設好了
         -->

        <table tableName="mmall_shipping" domainObjectName="Shipping" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_cart" domainObjectName="Cart" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_cart_item" domainObjectName="CartItem" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_category" domainObjectName="Category" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_order" domainObjectName="Order" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_order_item" domainObjectName="OrderItem" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_pay_info" domainObjectName="PayInfo" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_product" domainObjectName="Product" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false">
            <!--  這裡有個細節 資料庫使用的是text型別  mybatis不同版本生成的不一樣    這裡指定一下使用varchar    生成是string型別 -->
            <columnOverride column="detail" jdbcType="VARCHAR" />
            <!-- 富文字      子圖片   預設是txt型別    mybatis不同的版本生成的是不一樣的      -->
            <columnOverride column="sub_images" jdbcType="VARCHAR" />
        </table>
        <table tableName="mmall_user" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>



        <!--
        <table tableName="mmall_shipping" domainObjectName="Shipping" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_cart" domainObjectName="Cart" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_cart_item" domainObjectName="CartItem" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_category" domainObjectName="Category" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_order" domainObjectName="Order" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_order_item" domainObjectName="OrderItem" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_pay_info" domainObjectName="PayInfo" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
        <table tableName="mmall_product" domainObjectName="Product" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false">
            <! - -  這裡有個細節 資料庫使用的是text型別  mybatis不同版本生成的不一樣  這裡指定一下使用varchar    生成是string型別 - - >
            <columnOverride column="detail" jdbcType="VARCHAR" />
            <columnOverride column="sub_images" jdbcType="VARCHAR" />
        </table>
        <table tableName="mmall_user" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>



        -->

        <!--
          <table tableName="mmall_logistics" domainObjectName="Logistics" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false">
            <! - -  這裡有個細節 資料庫使用的是text型別  mybatis不同版本生成的不一樣  這裡指定一下使用varchar    生成是string型別 - - >
            <columnOverride column="logistics_detail" jdbcType="VARCHAR" />
        </table>

         -->
        <!--<table tableName="mmall_order" domainObjectName="Order" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>-->




        <!-- geelynote mybatis外掛的搭建 -->
    </context>
</generatorConfiguration>

jar包找一個就好了

 

配置datasource.properties

 

# db.driverLocation=/Users/imooc/mysql-connector-java-5.1.6-bin.jar
# 我使用的mysql 5.7  要使用的是驅動也要是5.7
#db.driverLocation=E:/web_ssm_ssh_zixue/workspace_ide/apache-maven-3.5.3/repository/mysql/mysql-connector-java/5.1.6/mysql-connector-java-5.1.6.jar
db.driverClassName=com.mysql.jdbc.Driver

#db.url=jdbc:mysql://192.1.1.1:3306/mmall?characterEncoding=utf-8
#db.url=jdbc:mysql://你的資料庫IP:你的資料庫Port/你的database?characterEncoding=utf-8
#127.0.0.1  線上阿里雲的ip

db.url=jdbc:mysql://127.0.0.1:3306/mmmail?characterEncoding=utf-8
db.username=root
db.password=root

#db.url=jdbc:mysql://115.159.181.16:3306/mmmail?characterEncoding=utf-8
#db.username=root
#db.password=udcong


db.initialSize = 20
db.maxActive = 50
db.maxIdle = 20
db.minIdle = 10
db.maxWait = 10
db.defaultAutoCommit = true
db.minEvictableIdleTimeMillis = 3600000

insert/insertSelective  :        create_time = now()  updata_time=now()

update/updateSelective :     create_time 不處理     updata_time=now()

 

其他表一樣處理