mybatis genertor自動產生Dao+mapping+model

來源:互聯網
上載者:User

標籤:

 

mybatis genertor自動產生Dao+mapping+model

 

【1】下載:

可參考:https://github.com/mybatis/generator/releases

解壓之後的格式:

 

【2】添加檔案

開啟lib檔案

(1)建立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.30.jar" />

  <context id="DB2Tables" targetRuntime="MyBatis3">

  <commentGenerator>

 <!-- :**阻止**產生的注釋包含時間戳記,預設為false -->

 <property name="suppressDate" value="true"/>

 <!-- **阻止**產生注釋,預設為false-->  

 <property name="suppressAllComments" value="true"/>

 </commentGenerator>

    <!--資料庫連結地址帳號密碼-->

<jdbcConnection driverClass="com.mysql.jdbc.Driver"

        connectionURL="jdbc:mysql:/***.***.***.***:3306/XXX"

        userId="root"

        password="" >

    </jdbcConnection>

    <javaTypeResolver >

      <property name="forceBigDecimals" value="false" />

    </javaTypeResolver>

    <!--產生Model類存放位置-->

    <javaModelGenerator targetPackage="test.model" targetProject="src">

      <property name="enableSubPackages" value="true" />

      <property name="trimStrings" value="true" />

    </javaModelGenerator>

    <!--產生對應檔存放位置-->

    <sqlMapGenerator targetPackage="test.mapping"  targetProject="src">

      <property name="enableSubPackages" value="true" />

    </sqlMapGenerator>

    <!--產生Dao類存放位置-->

    <javaClientGenerator type="XMLMAPPER" targetPackage="test.dao"  targetProject="src">

      <property name="enableSubPackages" value="true" />

    </javaClientGenerator>

    <!--產生對應表及類名-->

    <table tableName="user"

domainObjectName="User"  

enableCountByExample="false"

enableUpdateByExample="false"

enableDeleteByExample="false"

enableSelectByExample="false"

selectByExampleQueryId="false">

    </table>

  </context>

</generatorConfiguration>

(2):添加mysql 的串連包:

 

【3】產生語句檔案:

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

【4】命令的使用:

在該目錄按住Shift鍵,右鍵滑鼠選擇"在此處開啟命令視窗",複製粘貼產生語句的檔案代碼即可。

 

 

產生的檔案見下:

 

mybatis genertor自動產生Dao+mapping+model

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.