一、相關文件java
關於Mybatis-Generator的下載能夠到這個地址:https://github.com/mybatis/generator/releases
mysql
因爲我使用的是Mysql數據庫,這裏須要在準備一個鏈接mysql數據庫的驅動jar包git
如下是相關文件截圖:github
和Hibernate逆向生成同樣,這裏也須要一個配置文件:spring
generatorConfig.xmlsql
<?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.46.jar"/> <context id="DB2Tables" targetRuntime="MyBatis3"> <commentGenerator> <property name="suppressDate" value="true"/> <property name="suppressAllComments" value="true"/> </commentGenerator> <!--數據庫連接地址帳號密碼--> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1:3306/springboot" userId="root" password="root1234"> </jdbcConnection> <javaTypeResolver> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <!--生成Model類存放位置--> <javaModelGenerator targetPackage="lcw.model" targetProject="src"> <property name="enableSubPackages" value="true"/> <property name="trimStrings" value="true"/> </javaModelGenerator> <!--生成映射文件存放位置--> <sqlMapGenerator targetPackage="lcw.mapping" targetProject="src"> <property name="enableSubPackages" value="true"/> </sqlMapGenerator> <!--生成Dao類存放位置--> <javaClientGenerator type="XMLMAPPER" targetPackage="lcw.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>
須要修改文件配置的地方我都已經把註釋標註出來了,這裏的相關路徑(如數據庫驅動包,生成對應的相關文件位置能夠自定義)不能帶有中文。數據庫
上面配置文件中的:src是手動建立的根目錄,就是你想要生成的文件要保存的地方springboot
<table tableName="user" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
tableName和domainObjectName爲必選項,分別表明數據庫表名和生成的實力類名,其他的能夠自定義去選擇(通常狀況下均爲false)。mybatis
生成語句文件:app
java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml -overwrite
二、使用方法
在該目錄按住Shift鍵,右鍵鼠標選擇"在此處打開命令窗口",複製粘貼生成語句的文件代碼便可。