1. 程式人生 > >mybatis-generator逆向工程生成model dao mapping

mybatis-generator逆向工程生成model dao mapping

mybatis-generator逆向工程實現具體步驟

generatorConfig.xml

mybatis-generator-core-1.3.2.jar

mysql-connector-java-5.1.7-bin.jar

上面三個檔案放到專案目錄下  src之上    執行完命令後 F5重新整理下

image

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>    
<!-- 資料庫驅動-->    
    <classPathEntry  location="mysql-connector-java-5.1.7-bin.jar"/>    
    <context id="DB2Tables"  targetRuntime="MyBatis3">    
        <commentGenerator>    
            <property name="suppressDate" value="true"/>    
            <!-- 是否去除自動生成的註釋 true:是 : false:否 -->    
            <property name="suppressAllComments" value="true"/>    
        </commentGenerator>    
        <!--資料庫連結URL,使用者名稱、密碼 -->    
        <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1/gaokao" userId="root" password="root">   
        </jdbcConnection>    
        <javaTypeResolver>    
            <property name="forceBigDecimals" value="false"/>    
        </javaTypeResolver>    
        <!-- 生成模型的包名和位置-->    
        <javaModelGenerator targetPackage="com.ma.model" targetProject="src\main\java">   
            <property name="enableSubPackages" value="true"/>    
            <property name="trimStrings" value="true"/>    
        </javaModelGenerator>    
        <!-- 生成對映檔案的包名和位置-->    
        <sqlMapGenerator targetPackage="com.ma.mapping" targetProject="src\main\java">   
            <property name="enableSubPackages" value="true"/>    
        </sqlMapGenerator>    
        <!-- 生成DAO的包名和位置-->    
        <javaClientGenerator type="XMLMAPPER" targetPackage="com.ma.dao" targetProject="src\main\java">   
            <property name="enableSubPackages" value="true"/>    
        </javaClientGenerator>    
        <!-- 要生成的表 tableName是資料庫中的表名或檢視名 domainObjectName是實體類名-->    
        <table tableName="admin" domainObjectName="Admin" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> 
          <table tableName="student" domainObjectName="Student" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> 
            <table tableName="university" domainObjectName="University" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> 
    </context>    
</generatorConfiguration> 


targetProject寫的是相對路徑  前面可能不加專案名稱也對    只要是相對路徑就行

在eclipse裡面開啟控制檯     專案右鍵—>Show In --->Terminal

當以上這些完成之後,只需要開啟控制檯,進入與     第一步加入的三個檔案  同級目錄下,執行指令碼

Java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml –overwrite

 如果出現Unknown argument: ––overwrite 這個報錯

試試去掉–overwrite:Java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml 

出現下面就是成功了

imageimage