Yes, I do have a brief update. My colleague will be writing that chapter soon.
Configuring the connector is fairly simple. You need to have a dependency on the Spring Cloud Discovery Client. Then, just define a bean of SpringCloudCommandRouter where the DiscoveryClient is autowired. A good (default) routing strategy (constructor arg 2) is the AnnotationRoutingStrategy.
For the SpringHttpCommandBusConnector, it’s the same story, create a bean, autowire the localCommandBus (make sure to use @Qualifier(“localSegment”)), RestTemplate and Serializer. They should all be present in the application context.
Once the CommandRouter and Connector are defined in the application context, Axon will automatically configure the DistributedCommandBus (if you’re on Spring Boot).
Hope this gives a bit of a start. Will push my colleague to finish the documentation.
Cheers,
Allard