Exploring Spring Boot 3.2 🚀 New JDBC Client | Latest Features Explained !

  Рет қаралды 15,655

Java Techie

Java Techie

8 ай бұрын

#JavaTechie #SpringBoot #NewFeature
👉 In this video, you'll learn:
✅ What's new in Spring boot 3.2 JDBC Client
✅ How to harness the full potential of JDBC Client
✅ Best practices and real-world with CRUD examples
✅ Tips and tricks for efficient Database operation
Spring boot microservice Premium course lunched with 70% off 🚀 🚀
Hurry-up & Register today itself!
COURSE LINK : javatechie5246.ongraphy.com/
PROMO CODE : JAVATECHIE50
OR use Javatechie APP
Download the JavaTechie app on your iOS or Android device from the App Store or Google Play Store.
Find the links below :
Android 🌐 : play.google.com/store/apps/de...
IOS 🌐 : apps.apple.com/in/app/javatec...
GitHub:
github.com/Java-Techie-jt/jdb...
Blogs:
/ javatechie4u
Facebook:
/ javatechie
Join this channel to get access to perks:
kzbin.infojoin
🔔 Stay Updated - Subscribe Now and Hit the Bell Icon to receive the latest updates from Java Techie.
Disclaimer/Policy:
--------------------------------
Please note that all content uploaded on this channel is original and not copied from any other source or community. You are welcome to use the source code provided in the GitHub repository mentioned above.

Пікірлер: 35
@michalechowicz6903
@michalechowicz6903 8 ай бұрын
Thanks for a video! Nice an example!
@vndprasadgrandhi4344
@vndprasadgrandhi4344 8 ай бұрын
Thank you very much for sharing wonderful content
@javaandothers6460
@javaandothers6460 8 ай бұрын
Finally not so different from "mybatis framework"
@gopisambasivarao5282
@gopisambasivarao5282 8 ай бұрын
Thanks, Basant, for your efforts. God bless you. 🙏🙂
@radiyziyat7747
@radiyziyat7747 6 ай бұрын
Great job. Thanks I liked making complex sql. Take dto.class for Entity And without using RowMapping you can immediately get the result complex sql query. A very effective thing for developing reporting forms and developing microservices.
@varaddeshmukh1137
@varaddeshmukh1137 8 ай бұрын
In spring data JPA we have @Query annotation. In this we can set native true if we want. Then what is difference between @Query and this new feature?
@sayantanghosh8245
@sayantanghosh8245 8 ай бұрын
Can you please cover course on Filter, interceptor ,requestbodyAdvise ,responsebodyAdvide. Thanks .😊
@bimerinoel4913
@bimerinoel4913 8 ай бұрын
Thanks for your great tutorial, But why these sql query, what if you want to do a complex query, can't it be mapped to data JPA queries
@JavaLovers
@JavaLovers 8 ай бұрын
Also please advise in context to NO SQL flavors like mongo it can be used
@vidhanchandra3997
@vidhanchandra3997 8 ай бұрын
Waiting for next video of microservices design pattern
@munnukiranchowdhary
@munnukiranchowdhary 8 ай бұрын
Superb bro... new thing i have learnt... thank you...
@karthikeyanrm3446
@karthikeyanrm3446 8 ай бұрын
Basant - any good references to learn DSA and system design for 10 years experience. Most of the companies shortlist candidates based on that. Please suggest 🙏
@atopazio
@atopazio 8 ай бұрын
Thanks for vídeo, how to do when it's can populate object inside object? for example, client.address.street
@jaripatidevendra6172
@jaripatidevendra6172 8 ай бұрын
Could you please explain debugging concepts pls
@ricardotrejoruiz5776
@ricardotrejoruiz5776 8 ай бұрын
Do you know if this is sql injection safe? Thank you in advance!!!! In another hand. How can be implemented a filter via query param? I have always problems with this :( thank you a lot
@pankajsarda7010
@pankajsarda7010 6 ай бұрын
This is not sql injection safe. Facing issue, any ide how to do it?
@nagendrad9263
@nagendrad9263 8 ай бұрын
Second comment ❤
@pardeepsaini3844
@pardeepsaini3844 8 ай бұрын
I need your help regarding configuration of multiple database in spring boot please
@Javatechie
@Javatechie 8 ай бұрын
Already I have uploaded how to configure multiple datasource please check that video
@hemanth1687
@hemanth1687 4 ай бұрын
it is taking almost 18 seconds to fetch 1000 records is there any alternate for that.
@Javatechie
@Javatechie 4 ай бұрын
This is just a demo buddy implement some executor service and validate
@hemanth1687
@hemanth1687 4 ай бұрын
can you please share any reference as once i called query with limit 1000 it is taking more than 15 sec but need it below 10 seconds from spring boot application ​@@Javatechie
@Javatechie
@Javatechie 4 ай бұрын
Sure i will share some references but before that what database are you using?
@hemanth1687
@hemanth1687 4 ай бұрын
@@Javatechie oracle database,and queried using springboot application using jdbc client
@vishalpattnaik1996
@vishalpattnaik1996 4 ай бұрын
does this mean jdbcTemplate is now deprecated ?
@Javatechie
@Javatechie 4 ай бұрын
No absolutely not . This api is built on top of it
@JavaLovers
@JavaLovers 8 ай бұрын
First comment
@RishiRajxtrim
@RishiRajxtrim 8 ай бұрын
Second comment
@sijovinsamalraj3893
@sijovinsamalraj3893 8 ай бұрын
tenth comment@@RishiRajxtrim
@jithendra1282
@jithendra1282 8 ай бұрын
Eleventh comment​@@sijovinsamalraj3893
@ankitanalawade2528
@ankitanalawade2528 8 ай бұрын
It’s a unnecessary repeated feature though
@PeterSarazin
@PeterSarazin Ай бұрын
Could you show an example of a search on a partial name or title using the LIKE operator with JdbcClient? I have been having some trouble getting that to work. I have done this many times successfully with myBatis or JPA. Here is a similar code snippet that I was trying but not sure what I have wrong. I was testing it by just passing lowercase a or e, but not getting any results trying to use .params() method. It does work if I append partialLastNameLike to the query instead of using parameters, but that is not ideal. @Override public List findByPartialLastName(String partialLastName) { String partialLastNameLike = "'%" + partialLastName.toLowerCase() + "%'"; return jdbcClient.sql("select * from author where lower(last_name) like :partialLastNameLike") .param("partialLastNameLike",partialLastNameLike, Types.VARCHAR) .query(Author.class) .list(); } }
@hanumanthram6754
@hanumanthram6754 8 ай бұрын
throw new IllegalArgumentException("Invalid positional parameter value of type Iterable (" + value.getClass().getSimpleName() + "): Parameter expansion is only supported with named parameters."); getting this exception if use jdbcClient.sql("INSERT INTO book(id, name, title) VALUES (?,?,?)") .param(List.of(book.getId(), book.getName(), book.getTitle())) .update(); working with: jdbcClient.sql("INSERT INTO book(id, name, title) VALUES (:id,:name,:title)") .param("id", book.getId()) .param("name", book.getName()) .param("title", book.getTitle()) .update();
@Javatechie
@Javatechie 8 ай бұрын
List of will work please check import statement also copy paste my piece of code and check
@girishanker3796
@girishanker3796 6 ай бұрын
You have used .param() instead of .params() it should be .params(List.of(book.getId(), book.getName(), book.getTitle())) Hope this helps
UFC Vegas 93 : Алмабаев VS Джонсон
02:01
Setanta Sports UFC
Рет қаралды 205 М.
Is it Cake or Fake ? 🍰
00:53
A4
Рет қаралды 19 МЛН
A First Look at the new Rest Client in Spring Boot 3.2
18:03
Dan Vega
Рет қаралды 25 М.
Spring Tips: Spring Data JDBC
27:36
SpringDeveloper
Рет қаралды 17 М.
Настоящий детектор , который нужен каждому!
0:16
Ender Пересказы
Рет қаралды 435 М.
AI от Apple - ОБЪЯСНЯЕМ
24:19
Droider
Рет қаралды 129 М.
Неразрушаемый смартфон
1:00
Status
Рет қаралды 1,3 МЛН