MessagingMessageConverter is always a StringMessageConverter #1050
Replies: 2 comments 1 reply
-
Hey @adispennette, Not sure what you're trying to achieve, and why you're using Just use Let me know if that works for you. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Well, this hardly seems like an issue with the framework, so I'll close this issue if you don't mind. Have you tried looking at the docs for sending messages? We can reopen the issue if necessary. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to us the spring cloud sqs listener for the first time and I have the following config:
The test config for the client is :
And the send function using the sqsTemplate is:
But no matter what I do I can not get the payload converter to use anything other than the string converter. This causes the following error:
Becuase when it get to the type check to see if it supports the type obviously a SendMessageRequest is not a String but Sting is not a valid input for the sqsTemplate.send
Can someone tell me what I am missing that is preventing me from getting the appropriate converter?
Beta Was this translation helpful? Give feedback.
All reactions