mybatis-generator 逆向工程的使用
作用 :
此工具是很好的MyBatis自動代碼生成工具.簡單的說就是通過數(shù)據(jù)庫的表生成實體bean和mapping文件.
此工具的優(yōu)勢:
不需要在IDE中運行,簡單修改工具中的配置即可!
本文字不多,為避免坑,請自習(xí)閱讀 ! ! ! ~~~
使用步驟
1. 下載你想工程工具包:
-
下載你想工程工具(百度云)
鏈接: https://pan.baidu.com/s/1pyfKOgWB7WIqTyW0h-U_hw 密碼: fjp4
大小:4M
-
下載好后是這樣的
2.修改相關(guān)的數(shù)據(jù)參數(shù)
代碼:
<?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>
<!-- 數(shù)據(jù)庫驅(qū)動包位置 -->
<classPathEntry location="mysql-connector-java-5.1.25-bin.jar"/>
<context id="DB2Tables" targetRuntime="MyBatis3">
<commentGenerator>
<property name="suppressDate" value="true"/>
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!-- 數(shù)據(jù)庫鏈接URL、用戶名劫樟、密碼 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost/ssmdb" userId="root" password="root">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!-- 生成模型的包名和位置 -->
<javaModelGenerator targetPackage="test.domain" targetProject="src">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!-- 生成的映射文件包名和位置 -->
<sqlMapGenerator targetPackage="test.mapping" targetProject="src">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<!-- 生成DAO的包名和位置 -->
<javaClientGenerator type="XMLMAPPER" targetPackage="test.IDao" targetProject="src">
<property name="enableSubPackages" value="true"/>
</javaClientGenerator>
<!-- ??????? tableName???????????????????? domainObjectName?????????-->
<!-- 要生成那些表(更改tableName和domainObjectName就可以) -->
<table tableName="base_dict" domainObjectName="BaseDict" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
<table tableName="customer" domainObjectName="Customer" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
<table tableName="sys_user" domainObjectName="SysUser" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
</context>
</generatorConfiguration>
要修改的地方:
-
修改數(shù)據(jù)庫連接信息
<!-- 數(shù)據(jù)庫鏈接URL尼酿、用戶名薇缅、密碼 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost/ssmdb" userId="root" password="root">
這里填的是你數(shù)據(jù)庫連接路徑,和你的數(shù)據(jù)庫的名字賬號,密碼 .
-
配置數(shù)據(jù)庫表和映射參數(shù)
<!-- 要生成那些表(更改tableName和domainObjectName就可以) -->
<table tableName="base_dict" domainObjectName="BaseDict" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
修改兩個屬性
tableName: 這里是你的數(shù)據(jù)庫的表的名稱
domainObjectName: 這里是你生成實體類的名稱.
-
生成代碼
生成很簡單,雙擊
保存 ! 很重要!
注意: 在生成的時候 , 會覆蓋上次生成的代碼,為避免覆蓋出錯,建議先刪除src下的文件
但是:src文件夾不能刪
-
拷貝到工程目錄下,再根據(jù)自己的需求修和使用.
完!