經過前面的學習,在實際開發中,咱們基本上能對mybatis應用自如了,可是咱們發現了一個問題,全部操做都是圍繞着po類,xxxMapper.xml文件,xxxMapper接口等文件來進行的。若是實際開發中數據庫的表特別多,那麼咱們須要手動去寫每一張表的po類,xxxMapper.xml,xxxMapper.java文件,這顯然須要花費巨大的精力,並且可能因爲表字段太多,寫錯了而不知道也是可能的。java
因此咱們在實際開發中,通常使用逆向工程方式來自動生成所需的文件。mysql
本篇博客源碼下載連接:http://pan.baidu.com/s/1nvvA68L 密碼:jc1psql
①、新建一個工程,並導入相應的jar包(詳情見上面源碼)數據庫
注意:使用逆向工程時,最好新建一個工程,若是你在原來的工程中使用,那也能夠,可是有必定的風險,由於mybatis是根據配置文件中配置的路徑來生成的文件的,若是你工程中有相同名字的文件,那麼就會被新生成的文件所覆蓋。因此實際開發中,咱們通常新建一個工程,將生成的文件複製到本身的所需的工程中。api
②、建立配置文件 generatorConfig.xml 文件mybatis
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?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>
<context id=
"testTables"
targetRuntime=
"MyBatis3"
>
<commentGenerator>
<!-- 是否去除自動生成的註釋
true
:是 :
false
:否 -->
<property name=
"suppressAllComments"
value=
"true"
/>
</commentGenerator>
<!--數據庫鏈接的信息:驅動類、鏈接地址、用戶名、密碼 -->
<jdbcConnection driverClass=
"com.mysql.jdbc.Driver"
connectionURL=
"jdbc:mysql://localhost:3306/mybatisrelation"
userId=
"root"
password=
"root"
>
</jdbcConnection>
<!-- <jdbcConnection driverClass=
"oracle.jdbc.OracleDriver"
connectionURL=
"jdbc:oracle:thin:@127.0.0.1:1521:yycg"
userId=
"yycg"
password=
"yycg"
>
</jdbcConnection> -->
<!-- 默認
false
,把JDBC DECIMAL 和 NUMERIC 類型解析爲 Integer,爲
true
時把JDBC DECIMAL和NUMERIC類型解析爲java.math.BigDecimal -->
<javaTypeResolver>
<property name=
"forceBigDecimals"
value=
"false"
/>
</javaTypeResolver>
<!-- targetProject:生成PO類的位置,重要!! -->
<javaModelGenerator targetPackage=
"com.ys.po"
targetProject=
".\src"
>
<!-- enableSubPackages:是否讓schema做爲包的後綴 -->
<property name=
"enableSubPackages"
value=
"false"
/>
<!-- 從數據庫返回的值被清理先後的空格 -->
<property name=
"trimStrings"
value=
"true"
/>
</javaModelGenerator>
<!-- targetProject:mapper映射文件生成的位置,重要!! -->
<sqlMapGenerator targetPackage=
"com.ys.mapper"
targetProject=
".\src"
>
<property name=
"enableSubPackages"
value=
"false"
/>
</sqlMapGenerator>
<!-- targetPackage:mapper接口生成的位置,重要!! -->
<javaClientGenerator type=
"XMLMAPPER"
targetPackage=
"com.ys.mapper"
targetProject=
".\src"
>
<property name=
"enableSubPackages"
value=
"false"
/>
</javaClientGenerator>
<!-- 指定數據庫表,要生成哪些表,就寫哪些表,要和數據庫中對應,不能寫錯! -->
<table tableName=
"items"
></table>
<table tableName=
"orders"
></table>
<table tableName=
"orderdetail"
></table>
<table tableName=
"user"
></table>
</context>
</generatorConfiguration>
|
注意:oracle
一、鏈接數據庫的配置,包括數據名稱,數據庫用戶名密碼等配置app
二、指定要生成代碼的包名,包括實體類po的包名,mapper的包名等學習
三、指定數據庫中哪些表須要生成文件spa
③、運行主程序生成代碼
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package
com.ys.test;
import
java.io.File;
import
java.util.ArrayList;
import
java.util.List;
import
org.mybatis.generator.api.MyBatisGenerator;
import
org.mybatis.generator.config.Configuration;
import
org.mybatis.generator.config.xml.ConfigurationParser;
import
org.mybatis.generator.internal.DefaultShellCallback;
public
class
GeneratorTest {
public
void
testGenerator()
throws
Exception{
List<String> warnings =
new
ArrayList<String>();
boolean
overwrite =
true
;
//指向逆向工程配置文件
File configFile =
new
File(GeneratorTest.
class
.getResource(
"/generatorConfig.xml"
).getFile());
ConfigurationParser cp =
new
ConfigurationParser(warnings);
Configuration config = cp.parseConfiguration(configFile);
DefaultShellCallback callback =
new
DefaultShellCallback(overwrite);
MyBatisGenerator myBatisGenerator =
new
MyBatisGenerator(config,
callback, warnings);
myBatisGenerator.generate(
null
);
}
public
static
void
main(String[] args)
throws
Exception {
try
{
GeneratorTest generator =
new
GeneratorTest();
generator.testGenerator();
}
catch
(Exception e) {
e.printStackTrace();
}
}
}
|
直接運行上面的程序,控制檯會打印以下代碼,說明生成代碼成功
而後刷新generatorConfig.xml 文件中指定的包,會發現生成了以下文件