extension-springcloud
extension-springcloud copied to clipboard
Axon Framework extension for Spring Cloud's Discovery mechanism integration to distribute Command messages.
We can integrate Axon `EventBus` with Spring Integration and Spring Cloud Stream with these configurations. As a Message Producer: ``` @Bean public IntegrationFlow flow(EventBus eventBus) { return IntegrationFlows.from(new AxonInboundChannelAdapter(eventBus)) .channel(Source.OUTPUT)...
Hi. Can Axon framework provide publish events directly to Spring cloud stream? Or we should use spring-amqp in event-driven microservices based on Spring cloud? Thanx.