本文采用Hibernate 3.2+作为JPA的实现方法,脱离常用的框架对 JPA 的 API 进行测试使用
Java Persistence API:用于对象持久化的 API
Java EE 5.0 平台标准的 ORM 规范,使得应用程序以统一的方式访问持久层目前Hibernate 3.2+、TopLink 10.1+ 以及 OpenJPA 都提供了 JPA 的实现
测试项目的目录结构
文件罗列
JPA配置文件
classpath:META-INF/persistence.xml
1 |
|
实体类配置
Customer.java
1 | package com.sust.entity; |
CustomerRepo.java
这里并没有实现CURD操作,只是以插入数据的方式来展示流程,测试配置
1 | package com.sust.repo; |
POM.xml
项目依赖jar
1 | <dependency> |
运行测试
运行前状态:
- 数据库结构:
自增辅助表(auto_increment_table)DDL:
1
2
3
4
5
6CREATE TABLE `auto_increment_table` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`PK_NAME` varchar(100) NOT NULL,
`PK_VALUE` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ciauto_increment_table
表数据:
id | PK_NAME | PK_VALUE |
---|---|---|
1 | customer_id | 1 |
运行5次 new CustomerRepo().test()
后:
- 数据库结构:
auto_increment_table
更新为没有搞懂PK_VALUE的增长策略
id | PK_NAME | PK_VALUE |
---|---|---|
1 | customer_id | 31 |
自动创建的数据表(jpa_customers)DDL:(注意主键并没有自增属性)
1
2
3
4
5
6
7
8
9
10CREATE TABLE `jpa_customers` (
`id` int(11) NOT NULL,
`age` tinyint(4) DEFAULT NULL,//注意这里的tinyint
`birthday` date DEFAULT NULL,//注意这里的date
`create_time` datetime(6) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`last_name` varchar(255) NOT NULL,
`update_time` datetime(6) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_cijpa_customers
数据:jpa_customers
表中的主键也并不是像@TableGenerator
注解中allocationSize=5
属性配置的每次都增长5,而是第一次增长6,以后才是5。。。很奇怪
id | age | birthday | create_time | last_name | update_time | |
---|---|---|---|---|---|---|
1 | 66 | 2019-08-22 | 2019-08-23 05:39:01 | 999@sust.edu.cn | Test_1 | 2019-08-23 05:39:01 |
7 | 66 | 2019-08-22 | 2019-08-23 05:39:02 | 999@sust.edu.cn | Test_1 | 2019-08-23 05:39:02 |
12 | 66 | 2019-08-22 | 2019-08-23 05:39:02 | 999@sust.edu.cn | Test_1 | 2019-08-23 05:39:02 |
17 | 66 | 2019-08-22 | 2019-08-23 05:39:02 | 999@sust.edu.cn | Test_1 | 2019-08-23 05:39:02 |
22 | 66 | 2019-08-22 | 2019-08-23 05:39:02 | 999@sust.edu.cn | Test_1 | 2019-08-23 05:39:02 |
第一次console中的sql:
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
47Hibernate:
select
tbl.PK_VALUE
from
auto_increment_table tbl
where
tbl.PK_NAME=? for update
Hibernate:
insert
into
auto_increment_table
(PK_NAME, PK_VALUE)
values
(?,?)
Hibernate:
update
auto_increment_table
set
PK_VALUE=?
where
PK_VALUE=?
and PK_NAME=?
Hibernate:
select
tbl.PK_VALUE
from
auto_increment_table tbl
where
tbl.PK_NAME=? for update
Hibernate:
update
auto_increment_table
set
PK_VALUE=?
where
PK_VALUE=?
and PK_NAME=?
Hibernate:
insert
into
jpa_customers
(age, birthday, create_time, email, last_name, update_time, id)
values
(?, ?, ?, ?, ?, ?, ?)之后的sql:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23Hibernate:
select
tbl.PK_VALUE
from
auto_increment_table tbl
where
tbl.PK_NAME=? for update
Hibernate:
update
auto_increment_table
set
PK_VALUE=?
where
PK_VALUE=?
and PK_NAME=?
Hibernate:
insert
into
jpa_customers
(age, birthday, create_time, email, last_name, update_time, id)
values
(?, ?, ?, ?, ?, ?, ?)