Consider I have some spring boot applications connected to my axon-server cluster.
I suppose these applications should agree on a common serialization format, so they can share messages.
From what I see, the axon server itself is not configured to use a certain data format, so it’s up to each of my apps to configure the same format.
First question: Is my assumption true?
Second question: what is a good practice to achieve this? I would ignore the axon-starter and set up a custom starter based on axon-autoconfiguration that holds all the shared configuration in my context. Are there any examples for this? It must be a quite common requirement.
Thanks
Jan