Spring Boot 3.2's Secret Weapon: Auto-Configured JDBC Client for Effortless Database Integration!

Sdílet
Vložit
  • čas přidán 10. 09. 2023
  • Welcome to the future of database integration with Spring Boot! The latest release, Spring Boot 3.2, brings forth a powerful new feature that's set to redefine how we interact with databases: the Auto-Configured JDBC Client. Gone are the days of tedious configurations and lengthy setup processes.
    With this secret weapon in your arsenal, you can now effortlessly connect, read, and persist data to your database, all within the familiar Spring ecosystem. Whether you're a seasoned developer or just starting out, this JDBC Client promises a streamlined experience, ensuring your projects are not only efficient but also scalable.
    🔗Resources & Links mentioned in this video:
    GitHub Repo: github.com/danvega/jdbc-client
    Rest Client: www.danvega.dev/blog/2023/09/...
    👋🏻Connect with me:
    Website: www.danvega.dev
    Twitter: / therealdanvega
    Github: github.com/danvega
    LinkedIn: / danvega
    Newsletter: www.danvega.dev/newsletter
    SUBSCRIBE TO MY CHANNEL: bit.ly/2re4GH0 ❤️
  • Věda a technologie

Komentáře • 42

  • @karter_devolidad
    @karter_devolidad Před 11 měsíci +11

    This is the amount of abstraction I was hoping spring would provide for JDBC. Glad it made the cut!

  • @philipschikora20
    @philipschikora20 Před 10 měsíci +2

    nice! 3.2 is going to be such a cool release!

  • @husane2161
    @husane2161 Před 11 měsíci +2

    Dan, See you reppin' the Browns! Nice dub yesterday! Thank you for your content, love all your videos!

  • @kostiantynkarzhanov9216
    @kostiantynkarzhanov9216 Před 5 měsíci

    Thank you! Great tutorial! Awesome channel! 💛

  • @Cashylein
    @Cashylein Před 4 měsíci

    Thank you!

  • @kaly7dev4873
    @kaly7dev4873 Před 10 měsíci

    Nice topic thanks !

  • @vitaliiplagov
    @vitaliiplagov Před 10 měsíci +6

    Fantastic!
    In our project, we have an internal library for working with JDBC that provides wrappers around jdbcTemplate, like `tryOne()`, `update()`, `list()`, etc. I think, once Spring Boot 3.2 is released, I will replace our custom code with Spring Boot built-in support. There will be less code to maintain and understand!
    Thanks for the video, Dan!

  • @AleksandarT10
    @AleksandarT10 Před 11 měsíci +3

    Great topic. It seems to be pretty clean. Hopefully the mappings work out as aspected (because jdbcTemplate rowMappers were strange for some null fields :) )

  • @gasparcalix2095
    @gasparcalix2095 Před 10 měsíci

    Just grate!

  • @konstantingromov6485
    @konstantingromov6485 Před 10 měsíci

    It's really awesome to have fluent DSL clients instead of classes bloated by overloaded methods.
    I was really waiting for RestTemplate replacement and finally it happened (hopefully it will be deprecated and removed soon).
    With JdbcClient I would probably go further - to extend with select/create/delete/update - to make similar to JOOQ API.

  • @hamzahayd6751
    @hamzahayd6751 Před 5 měsíci

    Pretty neat. Almost feels like Jooq ;)

  • @maxd7228
    @maxd7228 Před 11 měsíci +3

    Hey Dan, Can you do a video on Spring Modulith project?

  • @sylvereleipertz955
    @sylvereleipertz955 Před 10 měsíci +2

    You don't need the Qualifer annotation if you name your parameter just like your class. Spring boot will find out automatically which implementation of the interface you're asking for

  • @FredrikRambris
    @FredrikRambris Před 11 měsíci +2

    What about getting generated keys? The KeyHolder in JdbcTemplate was weird. Even weirder in the DatabaseClient in r2dbc

  • @JamesStansell
    @JamesStansell Před 10 měsíci

    Wondering if this might be useful with a database that is set up to be accessed issuing stored procedures? Switching the legacy access to jdbc template and row mappers was prohibitive.

  • @michelchaghoury9629
    @michelchaghoury9629 Před 10 měsíci

    @Dan Vega what if in the select clause we have a column named f_name and in the java class it is defined as firstName how can we map column to properties?

  • @minarashidi868
    @minarashidi868 Před 8 měsíci

    Could you elaborate on the difference between spring-data-jdbc and JDBC client? Which one do you recommend?

  • @poorneshm.m4494
    @poorneshm.m4494 Před 7 měsíci

    Hi Dan,how to use PreparedStatement in three JDBC Client or it internally uses it?Thank you in advance

  • @FilipCodes
    @FilipCodes Před 11 měsíci +3

    20:21 how do you get such nice json formatting? Is it some chrome extension?

  • @akhill357
    @akhill357 Před 8 měsíci

    what buttons are you using to get post-schema etc. templates in intellij

  • @reflection648
    @reflection648 Před 9 měsíci

    which plugin you have used for templates

  • @LekkyDev
    @LekkyDev Před měsícem

    Is there a difference between a service and a repository.
    I've seen in some tutorials you use @repository and in others @service.
    What is the difference? When to use which?

  • @bradenborman4396
    @bradenborman4396 Před 7 měsíci

    How does it handle mapping enums on the record?

  • @sagarbhat1
    @sagarbhat1 Před 10 měsíci +3

    Just wondering, why would anyone choose JDBC template or the new JDBC client over Spring Data JPA?

    • @sagarbhat1
      @sagarbhat1 Před 10 měsíci

      Are there any use cases where JDBC template or the new JDBC client would be more useful or preferable than Spring Data JPA?

    • @syednoorullahshah9194
      @syednoorullahshah9194 Před 9 měsíci

      @@sagarbhat1 I have such a case. I have a spring boot app that needs to connect to IBM's Netezza Data warehouse. Netezza has its own jdbc driver and since Hibernate or spring data JPA do not support Netezza. I'm currently looking for an alternative approach (i.e. better than the raw jdbc one).

  • @Varkon
    @Varkon Před 10 měsíci

    Doesn't Quarkus already have such a (or similar) feature?

  • @robtai6225
    @robtai6225 Před 10 měsíci +1

    dan, can you make an introductory video on spring boot 3.0 for noobs?

    • @DanVega
      @DanVega  Před 10 měsíci

      I certainly can... What would you like the video to be focused on? What's new in Spring? What are you trying to build with it?

  • @gallardofabian
    @gallardofabian Před 10 měsíci +1

    thanks great videos, I only suggest a litte more zoom in the videos if you can. Have a god day

    • @DanVega
      @DanVega  Před 10 měsíci +1

      Zoom on the code?

    • @gallardofabian
      @gallardofabian Před 10 měsíci

      @@DanVega yes thanks :)

    • @lukamaletic9557
      @lukamaletic9557 Před 10 měsíci

      It is pretty visible, and much better this way if you ask me as we see more code and if the quality of the video is fine, there are no issues with reading.

  • @hkkabir2024
    @hkkabir2024 Před 10 měsíci +1

    the question is why i use jdbc even jdbc template when i have JPA????????

    • @diegoshevek5927
      @diegoshevek5927 Před 8 měsíci

      The more question marks you add, the better the question is

    • @hkkabir2024
      @hkkabir2024 Před 8 měsíci +1

      @@diegoshevek5927 it's beyond my mind. would you like to tell me the answer in appropriate topic ?

  • @joachimdietl6737
    @joachimdietl6737 Před 10 měsíci +2

    Why would you do that instead of using JPA?

    • @ocleidyreve6361
      @ocleidyreve6361 Před 10 měsíci +3

      If you are working on an old codebase with raw jdbc ResultSet. The migration will be smoother, the team will avoid shooting itself in the foot with JPA/Hibernate, and the performance will be preserved.

    • @joachimdietl6737
      @joachimdietl6737 Před 10 měsíci

      @@ocleidyreve6361 yes with an old codebase you have a lot to do, but i am wondering for new projects, it does not make a sense

  • @Gabriel-ts9nl
    @Gabriel-ts9nl Před 10 měsíci

    🤤 "Promosm"