Intellij IDEA 中使用 MyBatis-generator 自動生成 MyBatis 代碼

1. 在maven項目的pom.xml 添加mybatis-generator-maven-plugin 插件

    <build>  
      <finalName>xxx</finalName>  
      <plugins>  
        <plugin>  
          <groupId>org.mybatis.generator</groupId>  
          <artifactId>mybatis-generator-maven-plugin</artifactId>  
          <version>1.3.2</version>  
          <configuration>  
            <verbose>true</verbose>  
            <overwrite>true</overwrite>  
          </configuration>  
        </plugin>  
      </plugins>  
    </build>  

2. 在maven項目下的src/main/resources 目錄下建立名爲 generatorConfig.xml的配置文件,作爲mybatis-generator-maven-plugin 插件的執行目標,模板如下:

    <?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="generator.properties"></properties>  
      
        <!--指定特定數據庫的jdbc驅動jar包的位置 -->  
        <classPathEntry location="${jdbc.driverLocation}"/>  
      
        <context id="default" targetRuntime="MyBatis3">  
      
      
            <!-- optional,旨在創建class時,對註釋進行控制 -->  
            <commentGenerator>  
                <property name="suppressDate" value="true" />  
            </commentGenerator>  
      
      
            <!--jdbc的數據庫連接 -->  
            <jdbcConnection driverClass="${jdbc.driverClass}" connectionURL="${jdbc.connectionURL}" userId="${jdbc.userId}" password="${jdbc.password}">  
            </jdbcConnection>  
      
      
      
            <!-- 非必需,類型處理器,在數據庫類型和java類型之間的轉換控制-->  
            <javaTypeResolver >  
                <property name="forceBigDecimals" value="false" />  
            </javaTypeResolver>  
      
            <!-- Model模型生成器,用來生成含有主鍵key的類,記錄類 以及查詢Example類  
                targetPackage     指定生成的model生成所在的包名  
                targetProject     指定在該項目下所在的路徑  
            -->  
            <javaModelGenerator targetPackage="org.louis.hometutor.po" targetProject="src/main/java">  
                <!-- 是否對model添加 構造函數 -->  
                <property name="constructorBased" value="true"/>  
      
                <!-- 是否允許子包,即targetPackage.schemaName.tableName -->  
                <property name="enableSubPackages" value="false"/>  
      
                <!-- 建立的Model對象是否 不可改變  即生成的Model對象不會有 setter方法,只有構造方法 -->  
                <property name="immutable" value="true"/>  
      
                <!-- 給Model添加一個父類 -->  
                <property name="rootClass" value="com.foo.louis.Hello"/>  
      
                <!-- 是否對類CHAR類型的列的數據進行trim操作 -->  
                <property name="trimStrings" value="true"/>  
            </javaModelGenerator>  
      
            <!--Mapper映射文件生成所在的目錄 爲每一個數據庫的表生成對應的SqlMap文件 -->  
            <sqlMapGenerator targetPackage="org.louis.hometutor.domain" targetProject="src/main/java">  
                <property name="enableSubPackages" value="false"/>  
            </sqlMapGenerator>  
      
      
            <!-- 客戶端代碼,生成易於使用的針對Model對象和XML配置文件 的代碼  
                    type="ANNOTATEDMAPPER",生成Java Model 和基於註解的Mapper對象  
                    type="MIXEDMAPPER",生成基於註解的Java Model 和相應的Mapper對象  
                    type="XMLMAPPER",生成SQLMap XML文件和獨立的Mapper接口  
            -->  
            <javaClientGenerator targetPackage="com.foo.tourist.dao" targetProject="src/main/java" type="MIXEDMAPPER">  
                <property name="enableSubPackages" value=""/>  
                <!--  
                        定義Maper.java 源代碼中的ByExample() 方法的可視性,可選的值有:  
                        public;  
                        private;  
                        protected;  
                        default  
                        注意:如果 targetRuntime="MyBatis3",此參數被忽略  
                 -->  
                <property name="exampleMethodVisibility" value=""/>  
                <!--  
                                               方法名計數器  
                  Important note: this property is ignored if the target runtime is MyBatis3.  
                 -->  
                <property name="methodNameCalculator" value=""/>  
      
                <!-- 
                                                    爲生成的接口添加父接口 
                 -->  
                <property name="rootInterface" value=""/>  
      
            </javaClientGenerator>  
      
      
      
            <table tableName="lession" schema="louis">  
      
                <!-- optional   , only for mybatis3 runtime  
                     自動生成的鍵值(identity,或者序列值)  
                   如果指定此元素,MBG將會生成<selectKey>元素,然後將此元素插入到SQL Map的<insert> 元素之中  
                   sqlStatement 的語句將會返回新的值  
                   如果是一個自增主鍵的話,你可以使用預定義的語句,或者添加自定義的SQL語句. 預定義的值如下:  
                      Cloudscape    This will translate to: VALUES IDENTITY_VAL_LOCAL()  
                      DB2:      VALUES IDENTITY_VAL_LOCAL()  
                      DB2_MF:       SELECT IDENTITY_VAL_LOCAL() FROM SYSIBM.SYSDUMMY1  
                      Derby:        VALUES IDENTITY_VAL_LOCAL()  
                      HSQLDB:   CALL IDENTITY()  
                      Informix:     select dbinfo('sqlca.sqlerrd1') from systables where tabid=1  
                      MySql:        SELECT LAST_INSERT_ID()  
                      SqlServer:    SELECT SCOPE_IDENTITY()  
                      SYBASE:   SELECT @@IDENTITY  
                      JDBC:     This will configure MBG to generate code for MyBatis3 suport of JDBC standard generated keys. This is a database independent method of obtaining the value from identity columns.  
                      identity: 自增主鍵  If true, then the column is flagged as an identity column and the generated <selectKey> element will be placed after the insert (for an identity column). If false, then the generated <selectKey> will be placed before the insert (typically for a sequence).  
      
                -->  
                <generatedKey column="" sqlStatement="" identity="" type=""/>  
      
      
                <!-- optional.  
                        列的命名規則:  
                        MBG使用 <columnRenamingRule> 元素在計算列名的對應 名稱之前,先對列名進行重命名,  
                        作用:一般需要對BUSI_CLIENT_NO 前的BUSI_進行過濾  
                        支持正在表達式  
                         searchString 表示要被換掉的字符串  
                         replaceString 則是要換成的字符串,默認情況下爲空字符串,可選  
                -->  
                <columnRenamingRule searchString="" replaceString=""/>  
      
      
      
                <!-- optional.告訴 MBG 忽略某一列  
                        column,需要忽略的列  
                        delimitedColumnName:true ,匹配column的值和數據庫列的名稱 大小寫完全匹配,false 忽略大小寫匹配  
                        是否限定表的列名,即固定表列在Model中的名稱  
                -->  
                <ignoreColumn column="PLAN_ID"  delimitedColumnName="true" />  
      
      
                <!--optional.覆蓋MBG對Model 的生成規則  
                     column: 數據庫的列名  
                     javaType: 對應的Java數據類型的完全限定名  
                     在必要的時候可以覆蓋由JavaTypeResolver計算得到的java數據類型. For some databases, this is necessary to handle "odd" database types (e.g. MySql's unsigned bigint type should be mapped to java.lang.Object).  
                     jdbcType:該列的JDBC數據類型(INTEGER, DECIMAL, NUMERIC, VARCHAR, etc.),該列可以覆蓋由JavaTypeResolver計算得到的Jdbc類型,對某些數據庫而言,對於處理特定的JDBC 驅動癖好 很有必要(e.g. DB2's LONGVARCHAR type should be mapped to VARCHAR for iBATIS).  
                     typeHandler:  
      
                -->  
                <columnOverride column="" javaType=""    jdbcType="" typeHandler=""  delimitedColumnName="" />  
      
            </table>  
        </context>  
    </generatorConfiguration>  
這裏使用了外置的配置文件generator.properties,可以將一下屬性配置到properties文件之中,增加配置的靈活性:
    jdbc.driverLocation=D:\\maven\\com\\oracle\\ojdbc14\\10.2.0.4.0\\ojdbc14-10.2.0.4.0.jar  
    jdbc.driverClass=oracle.jdbc.driver.OracleDriver  
    jdbc.connectionURL=jdbc:oracle:thin:@//localhost:1521/XE  
    jdbc.userId=LOUIS  
    jdbc.password=123456  

3.運行generatorConfig.xml的配置文件生成實體對象和xml文件

方式一:使用idea的maven插件直接快速生成

這裏寫圖片描述

方式二:在Intellij IDEA添加一個“Run運行”選項,使用maven運行mybatis-generator-maven-plugin插件 :

1:選擇配置edit configuration

這裏寫圖片描述

2:創建maven運行項

這裏寫圖片描述

3:配置命令 mybatis-generator:generate -e

這裏寫圖片描述

4:運行

這裏寫圖片描述






發佈了22 篇原創文章 · 獲贊 42 · 訪問量 15萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章