MyBatis——Generator

一、依賴:java

<!--mybatis逆向工程-->
<dependency>
  <groupId>org.mybatis.generator</groupId>
  <artifactId>mybatis-generator-core</artifactId>
  <version>1.3.7</version>
</dependency>
  <plugins>
    <plugin>
      <groupId>org.mybatis.generator</groupId>
      <artifactId>mybatis-generator-maven-plugin</artifactId>
      <version>1.3.7</version>
      <configuration>
        <!--配置文件的路徑:能夠指定-->
        <!--<configurationFile>src/main/resources/generatorConfig.xml</configurationFile>-->
        <verbose>true</verbose>
        <overwrite>true</overwrite>
      </configuration>
    </plugin>
  </plugins>

二、配置文件generatorConfig.xmlmysql

            <?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包的位置,這個是針對下載Jar包的方式,由於用了maven因此這個就用不上了-->
                <classPathEntry location="E:\MavenLib\mysql\mysql-connector-java\5.1.6\mysql-connector-java-5.1.6.jar" />
            
                <context id="DB2Tables" targetRuntime="MyBatis3">
                    <commentGenerator>
                        <property name="suppressDate" value="false"/>
                        <!-- 是否去除自動生成的註釋 true:是 : false:否 -->
                        <property name="suppressAllComments" value="true"/>
                    </commentGenerator>
            
                    <!--jdbc的數據庫鏈接-->
                    <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                                    connectionURL="jdbc:mysql://localhost:3306/store?characterEncoding=utf-8"
                                    userId="root"
                                    password="000000">
                        <!--<property name="serverTimezone" value="UTC"/>-->
                        <property name="nullCatalogMeansCurrent" value="true"/>
                    </jdbcConnection>
            
                    <!--非必須,類型處理器,在數據庫類型和java類型之間的轉換控制-->
                    <javaTypeResolver>
                        <!-- 默認狀況下數據庫中的 decimal,bigInt 在 Java 對應是 sql 下的 BigDecimal 類 -->
                        <!-- 不是 double 和 long 類型 -->
                        <!-- 使用經常使用的基本類型代替 sql 包下的引用類型 -->
                        <property name="forceBigDecimals" value="false" />
                    </javaTypeResolver>
            
            
                    <!--指定生成entity實體類的具體位置-->
                    <javaModelGenerator targetPackage="com.qf.domain" targetProject="./src/main/java">
                        <property name="enableSubPackages" value="true"/>
                        <property name="trimStrings" value="true"/>
                    </javaModelGenerator>
                    <!--指定生成mybatis映射xml文件的包名和位置-->
                    <sqlMapGenerator targetPackage="mapper" targetProject="./src/main/resources">
                        <property name="enableSubPackages" value="true"/>
                    </sqlMapGenerator>
                    <!--指定生成mapper接口的具體位置-->
                    <javaClientGenerator targetPackage="com.qf.dao" targetProject="./src/main/java" type="XMLMAPPER">
                        <property name="enableSubPackages" value="true"/>
                    </javaClientGenerator>
            
                    <!--&lt;!&ndash; 要生成entity/mapper的表名及自定義的DO名 &ndash;&gt;-->
                    <!--<table tableName="users" domainObjectName="User"/>-->
            
                    <!--<table tableName="product_brand" domainObjectName="ProductBrand" />-->
            
                    <!--mybatis generator代碼生成器在默認的狀況下會生成對於表實體類的一個Examle類, 能夠更改生成器的配置可避免生成Examle類,
                    enableCountByExample,enableUpdateByExample,enableDeleteByExample,enableSelectByExample等配置爲false後, 就不會生成生成Examle類了 -->
            
                    <table tableName="t_business" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
            
                </context>
            </generatorConfiguration>

三、運行:sql

mvn mybatis-generator:generate
相關文章
相關標籤/搜索