hbm2java工具根据映射文件自动生成Java源文件,而hbm2ddl工具则根据映射文件自动生成数据库Schema,下面是这两种工具的使用:
1.建立Java工程,加入Jar包,创建创建hibernate配置文件以及响应的映射文件,相关jar包及工程目录如下:
2.相关文件代码如下:
build.xml:
1 <?xml version="1.0"?>
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
54
55
hibernate.cfg.xml:
1 <?xml version="1.0" encoding="UTF-8"?>
2 "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
4 "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
5
6
7 org.hibernate.dialect.MySQLDialect
8 com.mysql.jdbc.Driver
9 jdbc:mysql://localhost:3306/hibernate
10 root
11
12 true
13
14
15
customer.hbm.xml:
1 <?xml version="1.0"?>
2 "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4 "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
5
6
7
8
9
10
11
12
13 not-null="true" />
14
15
16
17
18
19 type="timestamp" />
20
21
3.运行项目:
run as,ant build,刷新项目,工程目录如下:
其中Customer.java即为根据映射文件生成的java源文件,classes目录下为编译后的classes文件
查看数据库,发现新生成了一个customers表,即为根据映射文件生成的数据库文件