-
Notifications
You must be signed in to change notification settings - Fork 2
/
04-persistence.html
494 lines (344 loc) · 9.75 KB
/
04-persistence.html
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Projekt i implementacja systemów webowych - wykład 4</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/white.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown data-separator-vertical="^--$">
<script type="text/template">
## Projekt i implementacja systemów webowych
### Wykład 4
#### trwałość obiektów w systemach webowych
mgr inż. Maciej Małecki
--
Wykład 30.03.2023 nie odbędzie się.
Odrabianie wykładu 31.03.2023 17:05
---
## Agenda
1. Od obiektowych baz danych do ORM
2. JPA - Java Persistence API
3. SpringData
4. Problemy związane z ORM i narzędzia alternatywne
---
![RAM](img/persistence/c64-ram.jpg)
HM4864-3, 65536x1 bit DRAM
--
![Magnetic tape](img/persistence/magtape1.jpg)
--
![Hard disk](img/persistence/ibm-2311.png)
--
![Disk pack](img/persistence/diskpack.png)
---
## Ewolucja systemów utrwalania
![fs-db](img/persistence/fs-db.excalidraw.png)
---
## Klasyfikacja baz danych
![db types](img/persistence/db-taxonomy.excalidraw.png)
(przykłady)
--
## Dlaczego obiektowe bazy danych przegrały?
* brak jednolitego standardu
* niekompatybilność z systemami relacyjnymi
* brak ekspertów
* brak skalowalności, wydajność
* wysoki koszt
---
## ORM - Object Relational Mapping
![ORM](img/persistence/orm.excalidraw.png)
---
# JPA
## Java Persistence API
--
## JPA - Java Persistence API
* powszechnie przyjęty standard
* wywodzący się z Hibernate
* zastąpił EJB Entity Beans, JDO, Toplink
--
![JPA](img/persistence/jpa-sql.drawio.png)
--
## Entity manager
```java[|1-3|5-6|8-9|11-12]
EntityManagerFactory emf = Persistence.createEntityManagerFactory(
"my-persistence-unit");
EntityManager em = emf.createEntityManager();
var article = em.find(Article.class, 123L);
em.remove(article);
var newArticle = new Article(456L, "Gładzie");
em.persist(newArticle);
var existingArticle = em.find(Article.class, 456L);
existingArticle.setName("Gładzie i inne");
```
--
## JPA - cykl życia encji
![Entity lifecycle](img/persistence/entity-lifecycle.excalidraw.png)
---
## Generowanie kluczy głównych
* GenerationType.IDENTITY
* GenerationType.SEQUENCE
* GenerationType.TABLE
* GenerationType.AUTO
--
## IDENTITY
```java[]
@Entity
public class Article {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
...
}
```
```sql
INSERT INTO ARTICLE (ID, NAME) VALUES (DEFAULT, 'Gładzie');
```
--
## SEQUENCE
```java[]
@Entity
public class Article {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE)
@SequenceGenerator(name = "article_seq", allocationSize = 10)
private Long id;
...
}
```
```sql
CREATE SEQUENCE article_seq START WITH 1 INCREMENT BY 10;
```
--
albo:
```java[]
@Entity
public class Article {
@Id
private UUID id;
private String name;
public static Article create(String name) {
var article = new Article();
article.id = UUID.randomUUID();
article.name = name;
return article;
}
}
---
## Śledzenie zmian
```java[]
var em = emf.createEntityManager();
em.getTransaction().begin();
var article = em.find(Article.class, 123L);
article.setName("Gładzie i inne");
em.getTransaction().commit();
em.close();
```
--
## Managed vs detached
```java[|1|3-4|6-8|6-10|10]
var em = emf.createEntityManager();
var article = em.find(Article.class, 123L);
em.detach(article);
article.setName("Gładzie i inne");
em.flush();
var updatedArticle = em.merge(article);
```
---
## Doprecyzowanie mapowań
```java[]
@Entity
@Table(name = "ARTICLE")
public class Article {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Column(name = "ARTICLE_NAME", nullable = false), length = 30)
private String name;
}
```
---
## Dziedziczenie
* Single table
* Table per class
* Joined
* Mapped super class
--
# Single table
![Single table](img/persistence/single-table.excalidraw.png)
--
# Single table
* ✔ szybkie i łatwe zapytania polimorficzne
* ✔ brak złączeń (JOIN)
* ✘ wiele pustych miejsc (NULL)
--
# Table per class
![Table per class](img/persistence/table-per-class.excalidraw.png)
--
# Table per class
* ✔ brak niewykorzystanych miejsc
* ✘ nie ma możliwości wyszukiwania polimorficznego
--
# Joined
![Joined](img/persistence/joined.excalidraw.png)
--
# Joined
* ✔ brak niewykorzystanych miejsc
* ✔ możliwość wyszukiwania polimorficznego
* ✘ wiele złączeń (JOIN)
--
# Mapped superclass
> Rodzaj dziedziczenia nie odzwierciedlony w bazie danych.
* ✔ brak niewykorzystanych miejsc
* ✘ prak wyszukiwania polimorficznego
---
# Asocjacje
* One-to-one
* One-to-many
* Many-to-one
* Many-to-many
--
## Przykład: One-to-one
```java[]
@Entity
public class Article {
@Id
private Long id;
@OneToOne
private ArticleDetails details;
}
--
## Przykład: Many-to-one
```java[]
@Entity
public class Article {
@Id
private Long id;
@ManyToOne
@JoinColumn(name = "CATEGORY_ID")
private Category category;
}
--
## Przykład: One-to-many
```java[]
@Entity
public class Article {
@Id
private Long id;
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)
@JoinColumn(name = "ARTICLE_ID")
private List<Comments> comments;
}
--
## Przykład: Many-to-many
```java[]
@Entity
public class Article {
@Id
private Long id;
@ManyToMany
@JoinTable(
name = "ARTICLE_TAG",
joinColumns = @JoinColumn(name = "ARTICLE_ID"),
inverseJoinColumns = @JoinColumn(name = "TAG_ID")
)
private List<Tag> tags;
}
--
fetch type<!-- .element class="r-fit-text"-->
* EAGER
* LAZY
--
A gdzie wady?<!-- .element class="r-fit-text"-->
--
## Problem N+1 selectów
```java[|1-7|9-14|16-22]
@Entity
public class Tweet {
@Id
private Long id;
@ManyToOne
private User author;
}
@Entity
public class User {
@Id
private Long id;
private String name;
}
var tweets = em.createQuery(
"SELECT t FROM Tweet t WHERE t.retweetCount > 10", Tweet.class)
.getResultList();
for (var tweet : tweets) {
System.out.println(tweet.getAuthor().getName());
}
```
--
## N+1 - rozwiązania
* FetchType.EAGER
* `JOIN FETCH`
* `@EntityGraph`
```java[]
em.createQuery(
"select t from Tweet t join fetch t.author where t.retweetCount > 10",
Tweet.class)
.getResultList();
```
Nie używaj asocjacji tam, gdzie nie jest to niezbędne.
--
## Do samodzielnego zapoznania:
* Criteria query
* Transaction management
* Named queries
* Named native queries
* Optimistic locking
* Pesimistic locking
---
# Spring Data
--
## Repozytoria
![Repozytoria](img/persistence/repositories.excalidraw.png)
--
<div class="r-hstack">
<img src="img/persistence/jpa-repository.png">
<img src="img/persistence/jpa-repository-2.png">
</div>
--
## JPA Repository
```java[]
public interface TweetRepository extends JpaRepository<Tweet, Long> {
List<Tweet> findTweetByContentContains(String content);
List<Tweet> findByRetweetCountGreaterThan(int count);
List<Tweet> findByRetweetCountGreaterThanAndContentContains(
int count, String content);
}
```
</script>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
width: 1200,
slideNumber: 'c/t',
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>