Bootiful CQRS and Event Sourcing with Axon Framework

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ต.ค. 2024

ความคิดเห็น • 14

  • @chandranathgupta4500
    @chandranathgupta4500 2 ปีที่แล้ว

    the session was clear and well structured. thank you.

  • @SatishKumar-yi8qi
    @SatishKumar-yi8qi 2 ปีที่แล้ว

    Before running the java application do we need run the axon server?

  • @weixiangng8279
    @weixiangng8279 2 ปีที่แล้ว

    Allard Buijze, is there source code or sample code to refer?

  • @anticom1337
    @anticom1337 4 ปีที่แล้ว +5

    So basically Axon Framework is kind of like JavaScript's Redux on steroids?

  • @prateekashtikar8631
    @prateekashtikar8631 2 ปีที่แล้ว

    Would you mind in sharing link to source code?

  • @snowy0110
    @snowy0110 5 ปีที่แล้ว

    how is that different from all that plethora of message brokers/enterprise buses? Seems like Axon reinvents the wheel

    • @pandur1337
      @pandur1337 5 ปีที่แล้ว +8

      Brokers and buses are a specific technique used to solve communication. Event sourcing is a architectural approach. In a lot of platforms based on event sourcing you will find brokers.

  • @chrise202
    @chrise202 3 ปีที่แล้ว

    17:08 What if your persist operation succeeds but publishing fails or vice versa?

    • @sirisaac8727
      @sirisaac8727 2 ปีที่แล้ว

      You usually do these 2 in a transaction, eg you store the event to be published inside the database alongside the actual event, and then it's guaranteed to be published, and once its published it can be removed from the database. If it fails to publish it can retry as many times as needed

  • @jasper5016
    @jasper5016 ปีที่แล้ว

    Even though your video is very good. I feel that Axon unnecessarily made is too complex. The same fields are copied everywhere. Its more confusion and tests will take forever to write.

    • @danishrockz1
      @danishrockz1 ปีที่แล้ว

      Event Sourcing can be done using axon