Spring Boot JDBC using JdbcTemplate

Поделиться
HTML-код
  • Опубликовано: 12 дек 2023
  • Connecting the Spring Boot app with H2 Database using Spring jdbc.
    Spring Boot Tutorial : • What is Spring Boot? |...
    Check out our courses:
    Spring and Microservices Weekend Live Batch : bit.ly/spring-live-weekend
    Coupon: TELUSKO10 (10% Discount)
    Master Java Spring Development : bit.ly/java-spring-cloud
    For More Queries, WhatsApp or Call: +919008963671
    Course Request : forms.gle/AgBcB56DnmzxUvMj8
    website : courses.telusko.com/
    Instagram : / navinreddyofficial
    Linkedin : / navinreddy20
    TELUSKO Android App : bit.ly/TeluskoApp
    TELUSKO IOS App : apple.co/3SsgmU2
    Discord : / discord
  • НаукаНаука

Комментарии • 40

  • @MeowTubeMoments619
    @MeowTubeMoments619 6 месяцев назад +14

    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 .

  • @vitalxvv
    @vitalxvv 3 месяца назад +1

    Finally a shot and more importantly very clear explanation. Thank you so much!

  • @rchanda25
    @rchanda25 Месяц назад

    awesome, very informative, lerning with fun and great humor. Study made relaxing

  • @emrahhakan5462
    @emrahhakan5462 Месяц назад

    perfect explaining! thanks!

  • @gowthamselvaraj7793
    @gowthamselvaraj7793 6 месяцев назад +2

    Continue this series sir, Complete java microservices tutorial sir❤❤❤❤

  • @jambub2506
    @jambub2506 4 месяца назад

    Good Explanation

  • @sorrapriyanka108
    @sorrapriyanka108 6 месяцев назад +1

    Sir, please do complete spring boot topic from basic to advance

  • @asinkan
    @asinkan 2 месяца назад

    great vid

  • @luisangelsosaflores9627
    @luisangelsosaflores9627 4 месяца назад

    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.

  • @soumyaranjandas5751
    @soumyaranjandas5751 5 месяцев назад +1

    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

  • @lalithaashri3628
    @lalithaashri3628 6 месяцев назад +1

    Can you please explain about volatile and atomicnumber in java?

  • @priyanshikmv
    @priyanshikmv 5 месяцев назад

    Nice video, Hero is hiring through a competition for students, I want to know more about it

  • @sumanthvadluri2040
    @sumanthvadluri2040 5 месяцев назад

    sir please make videos on java applet topic

  • @user-uq7pt2dr3h
    @user-uq7pt2dr3h 6 месяцев назад

    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.

  • @MrMVKR
    @MrMVKR 5 месяцев назад +1

    can we use BeanProperyRowMapper so that we dont need to create RowMapper object????????????

  • @gokukrishh
    @gokukrishh 6 месяцев назад

    Hi, Can you please explain Spring Security again with the latest versions. Thank you

  • @pavib5694
    @pavib5694 20 дней назад

    Can we create a table and data using Oracle SQL developer sir

  • @user-cm2jp6zs8h
    @user-cm2jp6zs8h 4 месяца назад +1

    Try to creating a RowMapper object then i cann't getting mapRow method.

  • @rajrsonbarsh9197
    @rajrsonbarsh9197 День назад

    Sir, I am unable to connect Mysql driver or any another in ecplice. Its showing Ping Problem occurred. Please help me.

  • @Hhyxzz
    @Hhyxzz 5 месяцев назад +2

    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

  • @soumyaranjandas5751
    @soumyaranjandas5751 5 месяцев назад

    Sir i want to talk with you sir when you come again

  • @chirrarajeshrara3077
    @chirrarajeshrara3077 6 месяцев назад +2

    i need new full course of spring frame work

  • @shreecharan5775
    @shreecharan5775 6 месяцев назад +9

    Why in the world do I need to use Spring JDBC instead of Spring Data Jpa?

    • @attrayadas8067
      @attrayadas8067 6 месяцев назад +4

      One advantage of using Spring JDBC is we don't need to create entity class.

    • @shreecharan5775
      @shreecharan5775 6 месяцев назад

      @@attrayadas8067 what's the advantage of not creating entity class? It's just a matter of a single annotation right?

    • @DreamDropsTV
      @DreamDropsTV 6 месяцев назад

      @@shreecharan5775 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 6 месяцев назад

      ​@@shreecharan5775 JDBC is significantly more efficient.

    • @AnthonyTouset
      @AnthonyTouset 6 месяцев назад

      ​@@shreecharan5775you 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

  • @palemchandrashekar7144
    @palemchandrashekar7144 5 месяцев назад

    Who is Kiran? Is he peg mate ?

  • @411yashwanthkumar8
    @411yashwanthkumar8 6 месяцев назад +3

    Why not hibernate ?

    • @jainishprajapati5248
      @jainishprajapati5248 6 месяцев назад +2

      Hibernate is great but why not JPA it's even better than all , supports JPQ for advance queries and ORM with minimal boilerplate code.