python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Axon Event Handler not working on a different microservice
I was implementing event-driven CQRS concept using Axon framework. I created two separate microservices and their own two write and read databases.
I am publishing an event in ms-1 and now I want to h...
Sanket Kamble
Votes: 0
Answers: 0
Streaming multiple events of different types using Axon
I am working on building streaming APIs for client/server communication using Axon and ServerSentEvents and not sure if it is possible to stream and identify multiple different events using Axon query...
pshah
Votes: 0
Answers: 1
How to disable a particular event handler from axon?
We have a few event handlers configured in the code. But, I'd like to disable a particular event handler from axon.
Please note - I can do this using @Profile or @Conditional parameter. But, I am inte...
jBOSS
Votes: 0
Answers: 1
AggregateMember inheritance: No handler was subscribed to command
I have the below aggregate which contains an aggregate member.
@Aggregate
public class CpaAggregate {
@AggregateIdentifier
private String externalId;
@AggregateMember
private Entity ...
Aymen Kanzari
Votes: 0
Answers: 1