notes/pl/java/libfws/spring/data/jdbc/docs/presentations.txt
Ihar Hancharenka 43d381baef m
2025-05-12 10:09:22 +03:00

50 строки
2.8 KiB
Plaintext

2025
JUGNsk - Polivaha - One ORM to Rule Them All of 58:35
https://www.youtube.com/watch?v=KMui4CQ6n1E
https://speakerdeck.com/jugnsk/snowone-2025-mikhail-polivakha-one-orm-to-rule-them-all
! 15:00 Goal of SpringDataJdbc - be able to say which sql-query will be executed, looking at the pojo-s
Otus - Proschaev - JDBC as Your Swiss Knife of 1:54:19
https://www.youtube.com/watch?v=lx_9cLTVc6g
Otus - DAO at Spring Data JDBC of 1:40:14
https://www.youtube.com/watch?v=VUMUVKFrAt8
! no spring-data at all
2024
SpringDeveloper - Long - Spring Tips: Spring Data JDBC 0:00 of 27:35
https://www.youtube.com/watch?v=srBYXhhLVV4
! using records, cache
Otus - Spring Data Jdbc Fundamentals ru of 2:34:40
https://www.youtube.com/watch?v=dhTje0tsfU8
! 1:05:00 @MappedCollection(idColumn="book_id")
! 1:07:00 @PersistenceCreator c-tor
JPoint - Polivaha - Spring Data JDBC Problems of 52:26
https://www.youtube.com/watch?v=dfANAAxfQ2c
https://jpoint.ru/archive/2024/talks/cd59886578984e3b8edb76f85ae4aea8
! spring data jdbc contributor
! spring-data-common - a lot of stuff
!!! spring-data-jdbc has been renamed to spring-data-relational (to remove extra confusion)
! 5:00 - aggregate - transactionally consistent set of objects (non-divided, atomic thing)
! 6:00 - data-jdbc for the people who tired from jpa
! no proxying, lazy-loading, dirty-checking, session/caching, cascading
! you specify aggregate bounds youself and need to save/get full aggregate
! 9:00 - JdbcAggregateTemplate (the same pattern as Repository)
! 16:00 - IdValueSource.java - select insert/update behavior (BeforeConvertCallback) - for id-gen on client #1169
! 35:00 - QueryMapperConfiguration works for query-based stuff only at the moment #1006
! 36:00 - java time stuff
2023
https://www.youtube.com/playlist?list=PLbuI9mmWSoUFGL6B_NxB9IoGqyDq-vEen
2022
DanVega - Spring Data JDBC Tutorial: How to simplify data access in Spring Boot 0:00 of 41:47
https://www.youtube.com/watch?v=l_T0nQNbFiM
TechTrain - Belyaev - Exchange Spring Data JPA to Spring Data JDBC 0:00 of 1:01:52
https://www.youtube.com/watch?v=WB8S_miQNvM
https://squidex.jugru.team/api/assets/srm/ef7583f9-e5eb-49a3-b04b-36b3c670f627/6bda9419-2b7c-409b-943a-a42a0124e286.pdf
2021
SpringDeveloper - Spring Data JDBC: Beyond the Obvious 1:00 of 52:39
https://www.youtube.com/watch?v=SJlKBkZ2yAU
! 10:00 - https://docs.spring.io/spring-data/jdbc/docs/current/api/org/springframework/data/jdbc/core/JdbcAggregateTemplate.html
! https://github.com/spring-projects/spring-data-relational/blob/main/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/JdbcAggregateTemplate.java
2019
SpringDeveloper - Domain-Driven Design with Relational Databases Using Spring Data JDBC of 1:10:29
https://www.youtube.com/watch?v=GOSW911Ox6s
! mainly bla-bla