Axon Framework: Change processing order between @EventHandler and @EventSourcingHandler
问题 My question is how I can change the processing order between an @EventHandler and an @EventSourcingHandler , for the same given Event. I have the @EventSourcinHandler method in an Aggregate class and an @EventHandler in an external class. If i fire an command which results in said event event, my code will run like this: @EventSourcingHandler @EventHandler I want to change this order to this: @EventHandler @EventSourcingHandler I tried the @Order and @ProcessingGroup annotations, but none of