Bootiful CQRS and Event Sourcing with Axon Framework

Поділитися
Вставка
  • Опубліковано 2 лют 2025

КОМЕНТАРІ • 14

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

    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?

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

    Would you mind in sharing link to source code?

  • @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

  • @anticom1337
    @anticom1337 5 років тому +5

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

  • @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.

  • @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