使用Mybatis-Generator插件
阿新 • • 發佈:2018-07-02
packages ntb 通過 映射 decimal mybatis3 solver osi val
使用Mybatis-Generator插件
作者版權所有,轉載請註明地址:
https://www.cnblogs.com/poterliu/p/9254554.html
Mybatis-Generator插件極大地方便了我們的開發效率,不用每張表每個字段人工去敲,所以本文介紹使用Mybatis-Generator自動生成Dao、Model、Mapping相關文件
1、IDE安裝Mybatis-Generator插件
Eclipse插件安裝,可以通過Eclipse插件市場的方式,但是速度很慢,下面通過本地插件的方式安裝。
插件如下:
鏈接:https://pan.baidu.com/s/1Xkvafman8gHqbT4zStnWDw 密碼:e0ws
1、Install New Software
2、Add->Archive
3、選擇本地下載好了的Mybatis-Generator插件
4、開始安裝,最好把網絡斷開安裝,這樣就不會去檢查更新,因為更新也很慢
2、配置generatorConfig.xml文件
這個文件主要用來配置基本的連接驅動位置、數據庫連接信息要映射的表、生成文件存放文件、生成的dao方法等。不要包含中文,配置信息如下:
<?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="D:\DevSoftware\maven\repository\mysql\mysql-connector-java\5.1.35\mysql-connector-java-5.1.35.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://10.129.0.182:3306/pbm" userId="medintl_appdata" password="zaq1@Wsx"> </jdbcConnection> <javaTypeResolver> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <javaModelGenerator targetPackage="com.demo.pbm.portal.po" targetProject="pbm-web\src\main\java"> <property name="enableSubPackages" value="true"/> <property name="trimStrings" value="true"/> </javaModelGenerator> <sqlMapGenerator targetPackage="com.demo.pbm.portal.mapping" targetProject="pbm-web\src\main\java"> <property name="enableSubPackages" value="true"/> </sqlMapGenerator> <javaClientGenerator type="XMLMAPPER" targetPackage="com.demo.pbm.portal.dao" targetProject="pbm-web\src\main\java"> <property name="enableSubPackages" value="true"/> </javaClientGenerator> <table tableName="insured_user_info" domainObjectName="InsuredUserInfo" enableDeleteByPrimaryKey="false" enableInsert="false" enableSelectByPrimaryKey="true" enableUpdateByPrimaryKey="false" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> </context> </generatorConfiguration>
3、運行generatorConfig.xml文件
右鍵運行,註意只有第一步插件安裝成功並重啟後才能看右鍵的Generate MyBatis….
全文完
使用Mybatis-Generator插件