在src/main/resource目錄下建立generatorConfig.xml文件html
(官方配置以及說明:http://mybatis.github.io/generator/configreference/xmlconfig.html)java
<?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> <!--數據庫驅動jar --> <classPathEntry location="C:\Users\Tidus\.m2\repository\mysql\mysql-connector-java\5.1.33\mysql-connector-java-5.1.33.jar" /> <context id="DB2Tables" targetRuntime="Ibatis2Java5"> <!--去除註釋 (true好像不起做用) --> <commentGenerator> <property name="suppressAllComments" value="true" /> </commentGenerator> <!--數據庫鏈接 --> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/tidus" userId="root" password="root"> </jdbcConnection> <!--默認false Java type resolver will always use java.math.BigDecimal if the database column is of type DECIMAL or NUMERIC. --> <javaTypeResolver > <property name="forceBigDecimals" value="false" /> </javaTypeResolver> <!--生成實體類 指定包名 以及生成的地址 (能夠自定義地址,可是路徑不存在不會自動建立 使用Maven生成在target目錄下,會自動建立) --> <javaModelGenerator targetPackage="com.tidus.model" targetProject="D:\MyCodes\java\web\StudentWeb\src\main\java"> <property name="enableSubPackages" value="false" /> <property name="trimStrings" value="true" /> </javaModelGenerator> <!--生成SQLMAP文件 --> <sqlMapGenerator targetPackage="com.tidus.persistence.ibatis" targetProject="D:\MyCodes\java\web\StudentWeb\src\main\java"> <property name="enableSubPackages" value="false" /> </sqlMapGenerator> <!--生成Dao文件 能夠配置 type="XMLMAPPER"生成xml的dao實現 context id="DB2Tables" 修改targetRuntime="MyBatis3" --> <javaClientGenerator type="SPRING" targetPackage="com.tidus.persistence.dao" targetProject="D:\MyCodes\java\web\StudentWeb\src\main\java"> <property name="enableSubPackages" value="false" /> </javaClientGenerator> <!--對應數據庫表 mysql能夠加入主鍵自增 字段命名 忽略某字段等--> <table schema="tidus" tableName="user_tbl" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" /> <table schema="tidus" tableName="student_tbl" domainObjectName="Student" /> </context> </generatorConfiguration>
table其餘屬性:
enableCountByExample="false"
enableUpdateByExample="false"
enableDeleteByExample="false"
enableSelectByExample="false"
selectByExampleQueryId="false"
schema即爲數據庫名, tableName爲對應的數據庫表, domainObjectName是要生成的實體類,
若是想要mapper配置文件加入sql的where條件查詢, 能夠將enableCountByExample等設爲true,
這樣就會生成一個對應domainObjectName的Example類, enableCountByExample等設爲false時,
就不會生成對應的Example類了. mysql
編寫完成後命令行執行C:\Users\Tidus>java -jar C:\Users\Tidus\.m2\repository\org\mybatis\generator\mybatis-generator-core\1.3.2\mybatis-generator-core-1.3.2.jar -configfile D:\MyCodes\java\web\StudentWeb\src\main\resources\generatorConfig.xml
git
便可生成對應的類github