When a @SagaEventHandler
needs to fetch data from another Microservice that also uses Axon Framework, is it a good practice to use QueryGateway
to query another Microservice? Or it is better to use something like RestTemplate
to call another Microservice from a @SagaEventHandler
method?
Thank you