Migration Issue: QueueMessageChannel Replacement in Spring Boot 3 #1353
Unanswered
ShaikMerge
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Try using SqsMessageDrivenChannelAdapter or @SqsListener. Example:
Or use SqsClient for manual polling:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
We are currently in the process of migrating our application from Spring Boot 2 to Spring Boot 3. As part of this migration, we are updating to the latest AWS SDK v2 and Spring Cloud AWS 3. However, we have encountered an issue with the QueueMessageChannel functionality, which seems to have been completely changed in the new version.
Problem:
In Spring Boot 2, we used QueueMessageChannel for our queue operations. However, we cannot find a direct replacement for QueueMessageChannel in Spring Boot 3 and Spring Cloud AWS 3.
Question:
How can we implement the same functionality as QueueMessageChannel in Spring Boot 3 using the latest AWS SDK v2 and Spring Cloud AWS 3? Is there a recommended approach or alternative that we should use?
Any guidance or examples would be greatly appreciated!
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions