What is the difference between JDBC Client and Spring Data JDBC?

  Рет қаралды 19,636

Dan Vega

Dan Vega

Күн бұрын

Пікірлер
@richardlin2359
@richardlin2359 3 ай бұрын
Useful Timestamps: 0:00 -- Intro 1:01 -- Background 2:05 -- Initialization 4:13 -- Docker Compose Database Setup 5:54 -- schema.sql 7:43 -- *.java file setup 8:50 -- JDK 11:47 -- @Bean CommandLineRunner to test out new entries 13:43 -- JDBC Template 18:25 -- JDBC Client 20:57 -- Spring Data JDBC
@lifeisbetterwhenyourelax
@lifeisbetterwhenyourelax 7 ай бұрын
Wow, that's badass! I'm maintaining a very large and old Java 8/Spring Framework 3.x application, so I'm still using Spring JDBC Templates. These new ways of handling CRUD feel like the holy grail. The best part is that there's no JPA and Hibernate (I hate the way Hibernate constructs the most sub-optimal queries). I can't wait to port our current app over to Java 21 and Spring Boot 3, so I can focus much more single-mindedly on business logic. Thanks very much, Dan. You have a new subscriber as of 2 days ago.
@3rguy1
@3rguy1 Жыл бұрын
This video is awesome, Dan! Short, concise and clear! I have been using Spring on and off over the last 5 years. It's the first time I have understood the different levels of abstraction that Spring provides over native Java. Keep up the great work. I will definitely be watching more of these videos 😁
@DanVega
@DanVega Жыл бұрын
Wow, thank you so much for the kind words! I'm really glad I am able to help out.
@Isranaks
@Isranaks 7 ай бұрын
Started watching ur videos. Its more informative. From Chennai, Tamil Nadu, India
@loyyeeko1231
@loyyeeko1231 Жыл бұрын
Hey Dan what a great video, as a person who doesn't like ORM, I would stop at JDBCClient, I found the Repository has lots of magic to it, but you have shown me the ways to do handle SQL between spring and db that's wonderful! thank you!
@FrankGinzo
@FrankGinzo Жыл бұрын
Great job, Dan! Miss seeing you teach!
@DanVega
@DanVega Жыл бұрын
I didn't go anywhere, I'm still here :)
@saganawski
@saganawski Жыл бұрын
Cool breakdown, I've used all of them professionally before
@DanVega
@DanVega Жыл бұрын
Thank you!
@This.Object
@This.Object Жыл бұрын
Dan, YOU'RE THE BEST
@DanVega
@DanVega Жыл бұрын
Thank you ☺️
@DavidYoo-m7z
@DavidYoo-m7z Жыл бұрын
Dan your videos are the best.
@DanVega
@DanVega Жыл бұрын
Thank you so much for the kind words 🤩
@sarahkelly2481
@sarahkelly2481 Жыл бұрын
Hi, Dan, thanks so much for this video. I happened upon it on FB and the timing couldn't be better. I have a general comment. You are using lots of keyboard shortcuts that I would love to learn (as I use IJ too). It would really be helpful if you used a key stroke display tool. KeyCastr is one example. I don't think it would detract from the main point of your videos, and some of us could learn a lot of additional steps. Thanks for considering this idea.
@iam_kundan
@iam_kundan Жыл бұрын
Excellent Video !!
@DanVega
@DanVega Жыл бұрын
Thank you very much!
@AlexSmile-y2x
@AlexSmile-y2x Жыл бұрын
So what is the difference between Spring Data JDBC and Spring Data JPA in this example?) In what cases the second would be preferable?
@ilkou
@ilkou Жыл бұрын
jpa has more annotations and magic than jdbc, gotta be careful with side effects of every annotation so u don't end up with data lost and unexpected behavior
@kyriakosmandalas2121
@kyriakosmandalas2121 Жыл бұрын
Hello Dan! What about a tutorial with one-to-many relatioship(s) with spring-data-jdbc?
@crillin570
@crillin570 Жыл бұрын
Excellent video Dan, really appreciate it. I was wondering which one of them is volume friendly when dealing with lots of records.
@FredrikRambris
@FredrikRambris Жыл бұрын
All of them. You go about it a little different. You can page the data. Or you can have a cursor that you may have for a long while. Instructing the driver how many rows per fetch and then stream it in. In some situations paginated data is the preferred as it doesn't lock or have open transactions that long, other times you are fine with that. Other times you must be able to abort and continue. When possible I line to just stream the whole resultset but that often requires some configuration to work and not buffer alot in memory.
@lifeisbetterwhenyourelax
@lifeisbetterwhenyourelax 7 ай бұрын
@@FredrikRambris I think he meant: Which, between of JDBC Template, JDBC Client, and CrudRepository, handles large result sets most efficiently and without issuing sub-optimal queries?
@marcosgarcia179
@marcosgarcia179 7 ай бұрын
Jdbc client is incredible, is very easy to work
@petroniobonavides3530
@petroniobonavides3530 10 ай бұрын
Yep.. I cleared java professional developer certification, I am clearing Spring Developers certification, after I will specialize myself in Vaadin with Vaadin developer certification
@RhZ-xd6ts
@RhZ-xd6ts 11 ай бұрын
Hi Dan! Thank you for the video to introduce the Spring new JDBC Client~ It is really convenient to write some complex SQL to bind with some data object. Do you think we can just use the JDBC Client to replace the Spring Data JPA's "@Query" with SQL? Or further more, do you have some suggestions if we want to use JDBC Client and Spring Data JPA together? I love both of them~
@lifeisbetterwhenyourelax
@lifeisbetterwhenyourelax 7 ай бұрын
He answered your first question in the video. The answer is 'yes.' You're certainly free to write your own queries by hand, using either JDBC Client or JDBC Template. I'll bet there's a way with CrudRepository, too.
@marcinjozwiak8825
@marcinjozwiak8825 Жыл бұрын
Hello Dan. Great content as always. I will be appreciate if you could create video about spring boot with kafka. Thank you in advance 😉
@DanVega
@DanVega Жыл бұрын
That would be a lot of fun, thanks for the suggestion.
@sagarbhat3884
@sagarbhat3884 Жыл бұрын
Great video as always Dan! I was wondering why would someone want to use JDBC client instead of Spring Data JDBC or Spring Data JPA? When it comes to integration with a database, then aren't the Spring Data projects much more useful than JDBC client?
@DanVega
@DanVega Жыл бұрын
I think If I were just getting started with Spring the JDBC Client would be the easiest way for me to talk to a database. Spring Data is awesome but there is an overhead to learning it. Spring Data JPA is even more of a learning curve if someone doesn't have experience with JPA.
@JaimeReyCasadoMonokepos
@JaimeReyCasadoMonokepos Жыл бұрын
wonderful video!!! Hwhat font do you use in intellij to recreate the arrow symbol in lambda functions, btw? Thanks a lot!!!
@DanVega
@DanVega Жыл бұрын
I'm using JetBrains Mono which supports Ligatures (that special arrow)
@Isranaks
@Isranaks 6 ай бұрын
Hello @dan vega, how to invoke oracle stored procedures through jdbcclient with in and out params
@VLADICA94KG
@VLADICA94KG Жыл бұрын
I am just wondering @6:31 how does the insert works when the ID is defined as varchar but you enter it as integer value = 1?
@DanVega
@DanVega Жыл бұрын
Good question, not sure. I would use the varchar in your code or change the id to an int
@drakenra
@drakenra 9 ай бұрын
What´s the Spring Data JDBC alternative for Spring Data JPA @EntityListeners? I need to encrypt password when persist data to db and decrypt password when fetch data from database.
@Harsh-fd4ml
@Harsh-fd4ml 10 ай бұрын
Which database you're using for production grade application MySQL or postgresql
@hemanth1687
@hemanth1687 11 ай бұрын
Hi, to fetch 1000 records from oracle db it is taking more than 15 seconds. is there any way to fetch data fater from srpingboot application
@IbrahimOzis
@IbrahimOzis Жыл бұрын
Hi Dan, First of all thank you for very helpful sharing. I wonder what would be the solution for jdbcClient if we had multiple databases and schema. Cheers, Ibrahim.
@FredrikRambris
@FredrikRambris Жыл бұрын
That is something I see many struggle with as Spring Boot does not really help much with that. You will have to provide two beans of type DataSource. Each with its own @PropertySource (not sure of that name, writing from memory), then provide two Beans of type JdbcClient, each depending on the respective DataSource. Then you can autowire the two JdbcClients (same for JdbcTemplate and similar for the reactive side).
@DanVega
@DanVega Жыл бұрын
Thanks for the great question. I am going to record a tutorial on this but here is the repository for now. github.com/danvega/multiple-ds
@IbrahimOzis
@IbrahimOzis Жыл бұрын
@@FredrikRambris thank you for the answer. I saw these solutions but it requires coding. Maybe it's possible to get that beans by qualifier name.
@Muescha
@Muescha Жыл бұрын
@@DanVega is it the same with spring-boot-data-jdbc?
@ericwangi6541
@ericwangi6541 Жыл бұрын
how to use Spring boot 3.2.0 with Spring DATA JPA and MySQL without docker. I tried but there is still a problem.
@georgetsiklauri
@georgetsiklauri Жыл бұрын
Hi, Dan. I think, when you're creating a video tutorial/overview on a topic X, it's better to concentrate on that X. I'm watching this now and thinking, that if a docker-compose, docker, or generally any other unrelated thing isn't really a clear concept for someone, he/she will need to divert from here to some other paths and all this makes it harder and a bit scattered to learn something. Concentration is already a big problem for a modern person, and if it's possible to keep a tutorial focused, it will greatly improve the experience. Respect.
@kayhan87
@kayhan87 Жыл бұрын
He mentions at the beginning of the video that if someone doesn't want to use a database via Docker, they can also use an H2 database. And by the way, as a "modern" software developer, some experience with Docker can't hurt. It is not particularly difficult to learn, but at the same time offers many advantages.
@DanVega
@DanVega Жыл бұрын
Normally I try and keep things simple but I also try and mention features folks might not know about. I mentioned it early on, if you don't want to use Docker I get it and H2 would be a simple change.
@georgetsiklauri
@georgetsiklauri Жыл бұрын
@DanVega mentioning features folks might not know may include a lot of other things, as well, then. Touching upon how Spring Boot works.. how DI is implemented and etc. Anyways, takeaway is that tutorials should better be on a one specific topic and include as minimum of other things as possible. E.g. if H2 is possible, why overload this with mentioning Docker and then referring the audience to go and watch another tutorial(s) on Docker..? :) I'm just trying to help you in having a better content.
@zoladkow
@zoladkow Жыл бұрын
imagine that there's a parallel world, where Dan made this video exactly per your suggestion - only mentioning that theres a database, then presenting those different access options. A variant of you from that world would comment "Dan, but how can anyone follow your tutorial if you don't show how to spin up a database. It will greatly improve the experience". Or some yet another variant would comment "This H2 stuff is hard...".🙂 No, it's simply not possible to cater to everyones tastes man. It was actually well executed and concise. I would only argue that DataSource managed by Spring was not pure JDK, but hey-close enough 😁
@Nico-ly7lh
@Nico-ly7lh 5 ай бұрын
Very similar to hibernate, isnt it?
@YaroslavYarmoshyk
@YaroslavYarmoshyk 10 ай бұрын
what is the difference between Spring Data JDBC and Spring Data JPA?
@JaBoss397
@JaBoss397 Жыл бұрын
why you left VMware
@static-m-s
@static-m-s Жыл бұрын
VMWare was acuired by Broadcom recently
@JaBoss397
@JaBoss397 Жыл бұрын
Oh okay good to know 😅 glad to see videos from Dan
@vipinkoul595
@vipinkoul595 Жыл бұрын
Hi Dan, would you please help in clearing the doubt, why there are so many "spring data" module and when to use which one? Here is the list, and it's getting confusing / ambigous: --> spring-boot-starter-data-jpa --> spring-boot-starter-data-jdbc --> spring-boot-starter-jdbc --> spring-data-jpa --> spring-data-jdbc --> spring-jdbc Could you please help demystify why so many modules are there ?
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
Apache KAFKA Tutorial | KAFKA Crash Course | Spring Boot
56:49
Daily Code Buffer
Рет қаралды 102 М.
5 Common Mistakes Spring Developers Make
18:06
Dan Vega
Рет қаралды 20 М.
Spring Tips: Spring Data JDBC
27:36
SpringDeveloper
Рет қаралды 22 М.
Spring Boot APIs Gateway in 20 Minutes
22:50
The IT Wizard
Рет қаралды 14 М.
Dependency Injection, The Best Pattern
13:16
CodeAesthetic
Рет қаралды 901 М.
Event-Driven Architecture (EDA) vs Request/Response (RR)
12:00
Confluent
Рет қаралды 178 М.
Solving one of PostgreSQL's biggest weaknesses.
17:12
Dreams of Code
Рет қаралды 220 М.
Spring Tips: DataSources
57:40
SpringDeveloper
Рет қаралды 15 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН