I just want to know if there is configuration property in spring-amqp to auto connect to the hosts given in application property file which has same queue name!
For example, I have around 20 queues that will be used to publish and consume by around 10 small spring boot applications in a VM(server1) and if some things happens to queues/rabbitmq node on server1, then it should connect to same set of queues on server2 (whose host/addresses could be given application.property
file - clustered/ non clustered nodes - all methods are fine for me). This could have been solved by Mirroring queue, but they involve performance degradation(transferring to other node and extra network trip by apps on other server whose nodes on which queues doesn't reside)
Not a great programmer now! Please ignore my ignorance! ;)