Reputation: 840
I've noticed that @Output -> @StreamListener approach has been deprecated and totally rewritten, to be used with Supplier/Consumer approach. It's said that all functionalities has been preserved in new approach, so I'm looking for a good article/blogpost, which will help me to migrate. For example I see that there are different dependencies (pom.xml needs to be changed), binding to for example RabbitMQ needs t be configured differently etc. Can you help?
Upvotes: 0
Views: 528
Reputation: 6126
Here it is https://spring.io/blog/2019/10/14/spring-cloud-stream-demystified-and-simplified and then this although it touches on reactive part which you may not need https://spring.io/blog/2019/10/17/spring-cloud-stream-functional-and-reactive And then all our samples have been migrated to functional - https://github.com/spring-cloud/spring-cloud-stream-samples And of course reference docs have all been updatd with all new code snippets and samples
Upvotes: 1