I am running multiple instances of the same Spring Boot Application, that consume messages from a rabbitMQ queue
I would like only the first consumer to receive messages while the other instances do not and if I stop the first consumer, the second instance should start to consume messages.
Is this possible and if so, how?
