Reputation: 2843
I have started to use spring cloud stream and some questions have come up from other team members on the depth to which you can customize. Specifically:
I understand that spring cloud stream is intended to get one up and running quickly, but for those who want to custom in depth, are there options or should we skip it and go straight to spring integration or spring rabbit?
Upvotes: 0
Views: 172
Reputation: 174739
You can set up the queues/exchanges exactly as you want before deploying - the binder will check to see if they exist already before declaring them the standard way.
There is currently no mechanism for changing the standard configuration used when auto-declaring these elements. Nor can you change the routing key.
Upvotes: 1