Spring Transaction Management with Spring Data JPA | Code Debugger

Поділитися
Вставка
  • Опубліковано 6 жов 2024
  • Spring Transaction Management with Spring Data JPA
    #SpringTransaction #SpringDataJPA #SpringBoot
    GitHub : github.com/git...

КОМЕНТАРІ • 34

  • @shraddhabais5532
    @shraddhabais5532 6 місяців тому

    This question was asked in my interview at one of the Mnc.
    Thank you for explaining it in very simple terms

  • @ramdafale
    @ramdafale 3 роки тому +4

    This was very brilliant tutorial. I really understood @Transaction For first time

  • @beyondthenature
    @beyondthenature 3 роки тому

    This is the only video which gave me proper knowledge about @Transactional annotation...Thanks a lot

  • @sangeetakumari1468
    @sangeetakumari1468 Рік тому

    wow! thank you so much ,such a great explanation with real coding.

  • @jitendrapatil3276
    @jitendrapatil3276 2 роки тому

    Perfect tutorial. I was looking for this example. Thanks a lot.

  • @pitchireddyb646
    @pitchireddyb646 3 роки тому +1

    Simple and clear explanation

  • @thinklog3888
    @thinklog3888 3 роки тому

    Thanks for the video and please do explain little more on transactional annotation. 😊

  • @Lucas-iv6ld
    @Lucas-iv6ld 2 роки тому

    great! cheers from brazil

  • @KidsPlayGround279
    @KidsPlayGround279 Рік тому

    bro , you are the gem

  • @GunShot109
    @GunShot109 3 роки тому

    Easy and simple video

  • @naveenrajukopparthi3046
    @naveenrajukopparthi3046 Рік тому

    Thank You

  • @LovebhatiaYT
    @LovebhatiaYT 2 роки тому

    This was my interview question and I couldn't answer
    But here I found xactly same solution ...

  • @nareshbhabat2816
    @nareshbhabat2816 2 роки тому

    great thank you for help

  • @CyberGenious24
    @CyberGenious24 Рік тому +1

    superlike

  • @_ravi_kumar_gupta
    @_ravi_kumar_gupta 3 роки тому +1

    Great video. Can we get a video on transaction in microservice means when calling two different microservice?

  • @MrSalahayman
    @MrSalahayman 4 роки тому +3

    could you explain also propagation and isolation in example plz

    • @CodeDebugger
      @CodeDebugger  4 роки тому +2

      Sure i will create a separate video on this.

  • @ddljr
    @ddljr 4 роки тому +1

    that was good liked it

  • @mallikarjun-shurpali9698
    @mallikarjun-shurpali9698 2 роки тому

    Thanks SIr..

  • @shahriarmahmud6416
    @shahriarmahmud6416 2 роки тому

    Helpful

  • @ramdafale
    @ramdafale 3 роки тому +1

    CAN you help me with Versioning of Microservices concept ?

  • @ILuvBilli
    @ILuvBilli 2 роки тому

    But spring data jpa implements transaction for crud operation

  • @karma4222
    @karma4222 2 роки тому

    Please upload videos often bro

  • @hamednikbakht9708
    @hamednikbakht9708 2 роки тому +1

    please add subtitle for videos

  • @jaytran594
    @jaytran594 3 роки тому

    it has better @transactional should be on the method bookAppointment

  • @ankitachavan5929
    @ankitachavan5929 3 роки тому

    nice.. thnks

  • @SouravAswal
    @SouravAswal 3 роки тому

    Thanks for the video. That's really helpful.
    But i have one query. I'll try to keep it as simple as I can.
    Suppose I am calling 4 different services from my application. From 1st service I am fetching data, 2nd service I am updating data into Database, 3rd is doing some delete operation followed by 4th service update operation. Now all these operations are to be managed within single transaction. How can I do it. Assume these services have their own databases. Can it be done by using spring transaction management?
    Can someone please help me with this?
    Thanks !!!

    • @CodeDebugger
      @CodeDebugger  3 роки тому +1

      I think this can be achieved by event based microsevices call.

    • @SouravAswal
      @SouravAswal 3 роки тому

      @@CodeDebugger Thanks for the quick response.
      Yes, Looks like event driven Publisher/Subscriber can be one way.
      . Would love to see a video on this topic, if possible.
      Thanks again!!!

    • @soch.original
      @soch.original 2 роки тому +1

      @Sourav Transactions, in SQL world, can only run against one database. You cannot implement the scenario you are describing, and it is against the pattern of microservices - microservices are decoupled from each other.

  • @srinivasang1062
    @srinivasang1062 3 роки тому +1

    Can you share the code?