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 Жыл бұрын
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_39 ай бұрын
Finally a shot and more importantly very clear explanation. Thank you so much!
@sonalgupta7915 ай бұрын
U r doing great job.. God bless you sir❤
@rchanda257 ай бұрын
awesome, very informative, lerning with fun and great humor. Study made relaxing
@anonymous-user-007 Жыл бұрын
Why in the world do I need to use Spring JDBC instead of Spring Data Jpa?
@attrayadas8067 Жыл бұрын
One advantage of using Spring JDBC is we don't need to create entity class.
@anonymous-user-007 Жыл бұрын
@@attrayadas8067 what's the advantage of not creating entity class? It's just a matter of a single annotation right?
@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 Жыл бұрын
@@anonymous-user-007 JDBC is significantly more efficient.
@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 Жыл бұрын
Continue this series sir, Complete java microservices tutorial sir❤❤❤❤
@VimalKumar-t5i3 ай бұрын
@11:29 min, that was really fun
@rohitbit8737Ай бұрын
So if there are 30 non-null columns in table, then how do we do it, the same way ? with big query args?
@Sotiris6V2 ай бұрын
Is it possible to add spring jdbc to an existing java project?
@MrMVKR11 ай бұрын
can we use BeanProperyRowMapper so that we dont need to create RowMapper object????????????
@soumyaranjandas575111 ай бұрын
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м2 ай бұрын
Should we iterate through resultset?
@codewithrice4 ай бұрын
should that be DAO layer, and not Repository? im confused
@codewithfelix3940Ай бұрын
may you do some fineract tutorials
@Hhyxzz11 ай бұрын
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
@vinutas73598 ай бұрын
Same question
@krishna_sugangar3 ай бұрын
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 Жыл бұрын
Sir, please do complete spring boot topic from basic to advance
@emrahhakan54627 ай бұрын
perfect explaining! thanks!
@priyanshikmv11 ай бұрын
Nice video, Hero is hiring through a competition for students, I want to know more about it
@luisangelsosaflores962710 ай бұрын
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 Жыл бұрын
Can you please explain about volatile and atomicnumber in java?
@AryaAR-y4o10 ай бұрын
Try to creating a RowMapper object then i cann't getting mapRow method.
@JagarlamudiSumanth4 ай бұрын
Did you sorted that
@rajrsonbarsh91975 ай бұрын
Sir, I am unable to connect Mysql driver or any another in ecplice. Its showing Ping Problem occurred. Please help me.
@pavib56946 ай бұрын
Can we create a table and data using Oracle SQL developer sir
@zaheerBaloch-f2y11 ай бұрын
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.
@weitanglau1625 ай бұрын
Can make a video on spring data jdbc?
@sumanthvadluri204011 ай бұрын
sir please make videos on java applet topic
@gokukrishh Жыл бұрын
Hi, Can you please explain Spring Security again with the latest versions. Thank you
@soumyaranjandas575111 ай бұрын
Sir i want to talk with you sir when you come again
@jambub250610 ай бұрын
Good Explanation
@411yashwanthkumar8 Жыл бұрын
Why not hibernate ?
@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.