Mybatis Generator產生Mybatis Dao介面層*Mapper.xml以及對應實體類

來源:互聯網
上載者:User

標籤:mybatis3   blog   映射   實現   local   代碼產生   bin   伺服器   mybatis   

http://www.cnblogs.com/qixiaoyizhan/p/7597315.html【前言】

  使用Mybatis-Generator自動產生Dao、Model、Mapping相關檔案,Mybatis-Generator的作用就是充當了一個代碼產生器的角色,使用代碼產生器不僅可以簡化我們的工作量,使得工作效率得到提升,而且可以大大減少代碼出錯的機率。在SSM(spring,springmvc,mybatis)三層架構中,我們免不了要使用mybatis進行mapper檔案的編寫,這裡我們採用mybatis-generator來進行我們的各依賴檔案的產生。

【擷取方式】

  Mybatis-Generator在官網有zip包可以進行下載,但是是國外伺服器,網路狀況不好的使用者可能不能流暢下載,這裡我已經有下載好的zip包並配置範例上傳在我的檔案裡面,親們可以在這裡直接進行下載,連結如下:

  -> https://files.cnblogs.com/files/qixiaoyizhan/mybatis-generator-core-1.3.5.zip

  下載好的zip包進行解壓到任意位置,然後我們可以看到其中的檔案目錄:

  

  jar包是產生器代碼,generatorConfig.xml是組建組態檔案,src是組建目錄。

【實現條件】

  由於產生器是jar包,因此要是用該工具,必須在系統中裝有JDK並且配置好環境變數。

  是否裝有jdk我們可以在任意位置開啟cmd控制台寫入命令 java -version 進行查看:

  

  這裡顯示了jdk的版本號碼,說明環境變數已經配置周全。

【實現過程】   1.generatorConfig.xml檔案的配置

  首先我們進行generatorConfig.xml進行組建檔案的配置,我們開啟generatorConfig.xml檔案,設定產生參數。

 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE generatorConfiguration 3   PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" 4   "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> 5 <generatorConfiguration> 6     <!--資料庫驅動--> 7     <classPathEntry    location="mysql-connector-java-5.1.21-bin.jar"/> 8     <context id="DB2Tables"    targetRuntime="MyBatis3"> 9         <commentGenerator>10             <property name="suppressDate" value="true"/>11             <property name="suppressAllComments" value="true"/>12         </commentGenerator>13         <!--資料庫連結地址帳號密碼-->14         <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/db_test?useSSL=false" userId="db_test" password="123456">15         </jdbcConnection>16         <javaTypeResolver>17             <property name="forceBigDecimals" value="false"/>18         </javaTypeResolver>19         <!--產生Model類存放位置-->20         <javaModelGenerator targetPackage="Data.Entities" targetProject="src">21             <property name="enableSubPackages" value="true"/>22             <property name="trimStrings" value="true"/>23         </javaModelGenerator>24         <!--產生對應檔存放位置-->25         <sqlMapGenerator targetPackage="mapper" targetProject="src">26             <property name="enableSubPackages" value="true"/>27         </sqlMapGenerator>28         <!--產生Dao類存放位置-->29         <javaClientGenerator type="XMLMAPPER" targetPackage="Dao" targetProject="src">30             <property name="enableSubPackages" value="true"/>31         </javaClientGenerator>32         <!--產生對應表及類名-->33         <table tableName="student" domainObjectName="Student" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>34     </context>35 </generatorConfiguration>

  檔案設定參數在裡面有說明,這裡不再進行贅述。

  2.調用mybatis-generator-core-1.3.5.jar進行代碼的產生

  在該檔案夾開啟cmd命令列(可以按住shift+滑鼠右鍵,在此處開啟命令列)

  

  然後在開啟的視窗輸入命令:

java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml -overwrite

  代碼執行成功後,我們可以看到代碼已經產生完整:

  開啟我們的src目錄,即可看到產生的程式碼。

【可能遇到問題】  

  jdk環境變數未配置完好導致代碼執行不成功->按照網上步驟進行環境變數的配置。

  資料庫連接錯誤->資料庫字串,帳號或密碼錯誤。

【系統展望】

  該產生器由於需要手工開啟檔案進行配置,而且還需要進行命令列執行方式,不利於進行操作,後續將改為使用介面方式進行操作。

Mybatis Generator產生Mybatis Dao介面層*Mapper.xml以及對應實體類

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.