Sending and receiving messages in Amazon SQS using Spring Boot.
Change the application.properties with your AWS settings.
mvn spring-boot:run
curl --request POST \
--url http://localhost:8080/sqs-example/send \
--header 'Content-Type: application/json' \
--data '{
"id": 1,
"fullName": "Sebastiao Junior",
"email": "sebastiaojuniordev@gmail.com"
}'