mybatis自動產生mapper,dao對應檔

來源:互聯網
上載者:User

標籤:tab   classpath      userinfo   需要   位置   app   type   ase   

利用Mybatis-Generator來幫我們自動產生mapper.xml檔案,dao檔案,model檔案。

1、所需檔案

關於Mybatis-Generator的下載可以到這個地址:https://github.com/mybatis/generator/releases

以下是相關檔案:

 

從以上中可以看出來有一個generator.xml檔案,主要就是修改這個檔案中的配置資訊。

mybaits-generator-core-1032.jar為mybaits產生器的核心包。

mysql-connector-java-5.1.34.jar為串連mysql的jar包;ojdbc6.jar為串連oracle的jar包,根據需要選擇不同的jar包。

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="E:\web\java_mybits\generator\ojdbc6.jar" /> <!-- 本次我的資料庫為oracle,所以選擇此jar包 -->
  <!-- <classPathEntry location="C:\oracle\product\10.2.0\db_1\jdbc\lib\ojdbc14.jar" />--><context id="DB2Tables" targetRuntime="MyBatis3"><commentGenerator><property name="suppressAllComments" value="true" /></commentGenerator><!-- 資料庫連結URL、使用者名稱、密碼 --><!--<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhots:3306/my_db?characterEncoding=utf8" userId="root" password="123456">--> <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin:@11.10.97.14:1521:TESTOMS" userId="kfomswas" password="kfomswas"></jdbcConnection><javaTypeResolver><property name="forceBigDecimals" value="false" /></javaTypeResolver><!-- 產生模型的包名和位置 --><javaModelGenerator targetPackage="dh.model" targetProject="E:\web\java_mybits\generator\src"><property name="enableSubPackages" value="true" /><property name="trimStrings" value="true" /></javaModelGenerator><!-- 產生的對應檔包名和位置 --><sqlMapGenerator targetPackage="dh.mapping" targetProject="E:\web\java_mybits\generator\src"><property name="enableSubPackages" value="true" /></sqlMapGenerator><!-- 產生DAO的包名和位置 --><javaClientGenerator type="XMLMAPPER" targetPackage="dh.dao" targetProject="E:\web\java_mybits\generator\src"><property name="enableSubPackages" value="true" /></javaClientGenerator><!-- 要產生那些表(更改tableName和domainObjectName就可以) --><table tableName="DH_DESIGN_TASK" domainObjectName="DhDesignTask" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" />
<!--
          <table tableName="course_info" domainObjectName="CourseInfo" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" /><table tableName="course_user_info" domainObjectName="CourseUserInfo" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" />
--></context></generatorConfiguration>

 如上代碼所示:

修改底線部分就能夠產生相應的檔案。多表一次性組建檔案只需在上面的紅色標註部分的注釋釋放掉,並修改相應的表名即可。

2、產生語句

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

3、產生步驟

 

在該目錄下的路徑框內輸入cmd,並按Enter,輸入產生語句

再斷行符號之後顯示:MyBatis Generator finished successfully

在該目錄下就產生了相應的檔案

 相應的檔案已上傳至檔案庫。

mybatis自動產生mapper,dao對應檔

相關文章

聯繫我們

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