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

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

Java Techie

8 месяцев назад

15,706 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@radiyziyat7747
@radiyziyat7747 - 11.12.2023 15:23

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.

Ответить
@ankitanalawade2528
@ankitanalawade2528 - 04.10.2023 18:21

It’s a unnecessary repeated feature though

Ответить
@pardeepsaini3844
@pardeepsaini3844 - 03.10.2023 14:35

I need your help regarding configuration of multiple database in spring boot please

Ответить
@karthikeyanrm3446
@karthikeyanrm3446 - 03.10.2023 11:54

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 🙏

Ответить
@jaripatidevendra6172
@jaripatidevendra6172 - 03.10.2023 06:57

Could you please explain debugging concepts pls

Ответить
@munnukiranchowdhary
@munnukiranchowdhary - 03.10.2023 06:34

Superb bro... new thing i have learnt... thank you...

Ответить
@javaandothers6460
@javaandothers6460 - 02.10.2023 02:38

Finally not so different from "mybatis framework"

Ответить
@hanumanthram6754
@hanumanthram6754 - 01.10.2023 12:03

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();

Ответить
@varaddeshmukh1137
@varaddeshmukh1137 - 01.10.2023 07:23

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?

Ответить
@ricardotrejoruiz5776
@ricardotrejoruiz5776 - 01.10.2023 00:33

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

Ответить
@gopisambasivarao5282
@gopisambasivarao5282 - 30.09.2023 22:28

Thanks, Basant, for your efforts. God bless you. 🙏🙂

Ответить
@vndprasadgrandhi4344
@vndprasadgrandhi4344 - 30.09.2023 18:28

Thank you very much for sharing wonderful content

Ответить
@atopazio
@atopazio - 30.09.2023 15:27

Thanks for vídeo, how to do when it's can populate object inside object? for example, client.address.street

Ответить
@sayantanghosh8245
@sayantanghosh8245 - 30.09.2023 14:41

Can you please cover course on Filter, interceptor ,requestbodyAdvise ,responsebodyAdvide. Thanks .😊

Ответить
@vidhanchandra3997
@vidhanchandra3997 - 30.09.2023 13:49

Waiting for next video of microservices design pattern

Ответить
@bimerinoel4913
@bimerinoel4913 - 30.09.2023 12:40

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 - 30.09.2023 12:21

Also please advise in context to NO SQL flavors like mongo it can be used

Ответить
@michalechowicz6903
@michalechowicz6903 - 30.09.2023 12:19

Thanks for a video! Nice an example!

Ответить
@nagendrad9263
@nagendrad9263 - 30.09.2023 12:16

Second comment ❤

Ответить
@JavaLovers
@JavaLovers - 30.09.2023 12:04

First comment

Ответить