過程非常簡單,只需要兩部就搞定了,對於碼農來說還是少寫了很多代碼,大大提高了編碼效率。
1.集成到開發環境中
本文以maven管理的功能來舉例,只需要將插件添加到pom.xml文件中即可。(注意此處是以plugin的方式,放在<plugins> </plugins>中間即可)
<plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.2</version> </plugin>
2.編寫配置文件 generatorConfig.xml
注意:在idea開發環境下,此文件需要放在resource根目錄下,mybatis generator默認加載此目錄的配置文件
<?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> <!--數據庫驅動mysql jar --> <classPathEntry location="C:\Program Files (x86)\MySQL\Connector.J 5.1\mysql-connector-java-5.1.40-bin.jar"/> <!--數據庫驅動oracle jar --> <!-- <classPathEntry location="E:\app\Acer\product\11.2.0\client_2\jdbc\lib\ojdbc5.jar"/>--> <context id="Tables" targetRuntime="MyBatis3"> <!--去除注釋 --> <commentGenerator> <property name="suppressAllComments" value="true"/> </commentGenerator> <!--mysql數據庫連接 --> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/goods" userId="root" password="root"> </jdbcConnection> <!--oracle數據庫連接 --> <!-- <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin:@172.16.36.23:1521/FOKF" userId="YCGCE" password="YCGCE"> <property name="remarksReporting" value="true"></property> </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.model" targetProject="E:\work7\goods\src\main\java"> <property name="enableSubPackages" value="true"/> <property name="trimStrings" value="true"/> </javaModelGenerator> <!--生成SQLMAP文件 --> <sqlMapGenerator targetPackage="mapper" targetProject="E:\work7\goods\src\main\resources"> <property name="enableSubPackages" value="false"/> </sqlMapGenerator> <!--生成Dao文件 可以配置 type="XMLMAPPER"生成xml的dao實現 context id="DB2Tables" 修改targetRuntime="MyBatis3" --> <javaClientGenerator type="XMLMAPPER" targetPackage="com.dao" targetProject="E:\work7\goods\src\main\java"> <property name="enableSubPackages" value="false"/> </javaClientGenerator> <!--對應數據庫表 mysql可以加入主鍵自增 字段命名 忽略某字段等 --> <table tableName="t_user" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"/> <table tableName="t_admin" domainObjectName="Admin" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"/> <table tableName="t_book" domainObjectName="Book" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"/> <table tableName="t_cartitem" domainObjectName="CartItem" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"/> <table tableName="t_category" domainObjectName="Category" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"/> <table tableName="t_order" domainObjectName="Order" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"/> <table tableName="t_orderitem" domainObjectName="OrderItem" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"/> </context> </generatorConfiguration>
集成工作完成了,看看如何使用!
so easy,只需在plugins中找到mybatis-generator plugin即可,雙擊運行或右擊 運行都可。如下如所示:
附上工程目錄結構及自動生成的文件

