Spring Boot JDBC using JdbcTemplate

  Рет қаралды 88,274

Telusko

Telusko

Күн бұрын

Пікірлер: 53
@v.Kaefer
@v.Kaefer 3 ай бұрын
Congratulations my friend, you managed to explain in 30minutes, with proper examples and methodologies, what a university proffesor couldn't teach in a whole semester. Keep up the good work.
@MeowTubeMoments619
@MeowTubeMoments619 Жыл бұрын
sir we are learning so many things from your channel i have one request sir please make one project with complete front end backend and data base .
@your_candy_3
@your_candy_3 9 ай бұрын
Finally a shot and more importantly very clear explanation. Thank you so much!
@sonalgupta791
@sonalgupta791 5 ай бұрын
U r doing great job.. God bless you sir❤
@rchanda25
@rchanda25 7 ай бұрын
awesome, very informative, lerning with fun and great humor. Study made relaxing
@anonymous-user-007
@anonymous-user-007 Жыл бұрын
Why in the world do I need to use Spring JDBC instead of Spring Data Jpa?
@attrayadas8067
@attrayadas8067 Жыл бұрын
One advantage of using Spring JDBC is we don't need to create entity class.
@anonymous-user-007
@anonymous-user-007 Жыл бұрын
@@attrayadas8067 what's the advantage of not creating entity class? It's just a matter of a single annotation right?
@DreamDropsTV
@DreamDropsTV Жыл бұрын
@@anonymous-user-007 when performace matters use JDBC. ORMs abstract these steps to make developers life easier, but performance wise no one can beat a natively written sql code compared to all sort of jpql , named query etc. and under the hood you actually don't have any control on what sql query data jpa is writing (which isn't always efficient). I have seen some examples where a simple query is converted to long ass joins of queries written by JPA.
@amitkriit
@amitkriit Жыл бұрын
​@@anonymous-user-007 JDBC is significantly more efficient.
@AnthonyTouset
@AnthonyTouset Жыл бұрын
​@@anonymous-user-007you may not have a well-formed, relational data model to work with. In that case one entity likely would not match-up well with database tables, requiring custom queries that can be a real pain with jpa. Also jpa implementations can be pretty heavy and not necessary if you have a small application
@gowthamselvaraj7793
@gowthamselvaraj7793 Жыл бұрын
Continue this series sir, Complete java microservices tutorial sir❤❤❤❤
@VimalKumar-t5i
@VimalKumar-t5i 3 ай бұрын
@11:29 min, that was really fun
@rohitbit8737
@rohitbit8737 Ай бұрын
So if there are 30 non-null columns in table, then how do we do it, the same way ? with big query args?
@Sotiris6V
@Sotiris6V 2 ай бұрын
Is it possible to add spring jdbc to an existing java project?
@MrMVKR
@MrMVKR 11 ай бұрын
can we use BeanProperyRowMapper so that we dont need to create RowMapper object????????????
@soumyaranjandas5751
@soumyaranjandas5751 11 ай бұрын
Sir i am big fan I saw you in banglore marathalli but I am unble to talk because you carry a small kid that's resion
@АлексейРябов-я8м
@АлексейРябов-я8м 2 ай бұрын
Should we iterate through resultset?
@codewithrice
@codewithrice 4 ай бұрын
should that be DAO layer, and not Repository? im confused
@codewithfelix3940
@codewithfelix3940 Ай бұрын
may you do some fineract tutorials
@Hhyxzz
@Hhyxzz 11 ай бұрын
Only one thing i didn't get it why the .sql extension files taking schema and data and if i changed the name of that files it is not working as i observed, can you please explain is it follows naming constraint
@vinutas7359
@vinutas7359 8 ай бұрын
Same question
@krishna_sugangar
@krishna_sugangar 3 ай бұрын
Key Steps for Using .sql Files in Spring Boot with H2: Naming Convention for SQL Files: schema.sql: This file is used for defining the database schema (creating tables, indexes, etc.). data.sql: This file is used for inserting initial data into the tables. Spring Boot will automatically pick up these files if they are placed in the src/main/resources folder.
@sorrapriyanka108
@sorrapriyanka108 Жыл бұрын
Sir, please do complete spring boot topic from basic to advance
@emrahhakan5462
@emrahhakan5462 7 ай бұрын
perfect explaining! thanks!
@priyanshikmv
@priyanshikmv 11 ай бұрын
Nice video, Hero is hiring through a competition for students, I want to know more about it
@luisangelsosaflores9627
@luisangelsosaflores9627 10 ай бұрын
Greetings a pleasure, I hope you can help me with a question I have regarding Spring JDBC, when you usually work with JDBC with Spring do you usually create the classes with the complete information of my tables? or just Dtos whose information I need. My doubt is because I come from JPA and the creation of the entities(@entity) is justified and the use of DTOs, but I would like to know how it is with Spring JDBC if professionally there are usually DTOS since in several tutorials I have seen I have not seen DTOS.
@lalithaashri3628
@lalithaashri3628 Жыл бұрын
Can you please explain about volatile and atomicnumber in java?
@AryaAR-y4o
@AryaAR-y4o 10 ай бұрын
Try to creating a RowMapper object then i cann't getting mapRow method.
@JagarlamudiSumanth
@JagarlamudiSumanth 4 ай бұрын
Did you sorted that
@rajrsonbarsh9197
@rajrsonbarsh9197 5 ай бұрын
Sir, I am unable to connect Mysql driver or any another in ecplice. Its showing Ping Problem occurred. Please help me.
@pavib5694
@pavib5694 6 ай бұрын
Can we create a table and data using Oracle SQL developer sir
@zaheerBaloch-f2y
@zaheerBaloch-f2y 11 ай бұрын
How to add two configurations in IntelliJ IDEA one for Java and one for JavaScript (React), my project back end is java, and front end is JavaScript.
@weitanglau162
@weitanglau162 5 ай бұрын
Can make a video on spring data jdbc?
@sumanthvadluri2040
@sumanthvadluri2040 11 ай бұрын
sir please make videos on java applet topic
@gokukrishh
@gokukrishh Жыл бұрын
Hi, Can you please explain Spring Security again with the latest versions. Thank you
@soumyaranjandas5751
@soumyaranjandas5751 11 ай бұрын
Sir i want to talk with you sir when you come again
@jambub2506
@jambub2506 10 ай бұрын
Good Explanation
@411yashwanthkumar8
@411yashwanthkumar8 Жыл бұрын
Why not hibernate ?
@jainishprajapati5248
@jainishprajapati5248 Жыл бұрын
Hibernate is great but why not JPA it's even better than all , supports JPQ for advance queries and ORM with minimal boilerplate code.
@androidgames3644
@androidgames3644 5 ай бұрын
Depend your requirement
@palemchandrashekar7144
@palemchandrashekar7144 11 ай бұрын
Who is Kiran? Is he peg mate ?
@chirrarajeshrara3077
@chirrarajeshrara3077 Жыл бұрын
i need new full course of spring frame work
@asinkan
@asinkan 8 ай бұрын
great vid
Premium Java and spring boot Courses
0:51
Telusko
Рет қаралды 61 М.
Spring | Autowire | Dependency Injection | Spring Boot
18:23
Telusko
Рет қаралды 590 М.
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 18 МЛН
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН
Java Database Connectivity | JDBC
20:34
Telusko
Рет қаралды 357 М.
2,000 People Fight For $5,000,000
24:45
MrBeast
Рет қаралды 15 МЛН
Spring Tips: Spring Data JDBC
27:36
SpringDeveloper
Рет қаралды 22 М.
Harsh Truth of Java in 2024! Ft. Ultimate Java Developer @Telusko
28:46
16.1  JDBC | Java Database Connectivity Theory Tutorial
21:19
Telusko
Рет қаралды 1,2 МЛН
What is JPA? | JPA Implementation
26:21
Telusko
Рет қаралды 392 М.
Spring Boot Kafka Full Course in 3 Hours🔥🔥🔥
2:43:02
Java Guides
Рет қаралды 12 М.
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН