Send messages to an Amazon SNS topic using Spring Boot

In this article we create an Amazon Simple Notification Service (Amazon SNS) topic and subscribe to it. Then we build a Spring Boot app that receives and publishes messages to the topic. Amazon SNS provides message delivery from publishers to subscribers using the pub/sub pattern. Subscribers can be other applications, for example, an Amazon SQS … Read more

Receive messages from an Amazon SQS queue using Spring Boot

In this article we’ll use Spring Boot to create an endpoint that polls an Amazon Simple Queue Service (SQS) queue for messages. Messages will consist of famous quotes saved to the database as they’re received. Amazon SQS and Spring Series This article is part of a series: Set up the database Prerequisites You must have … Read more

Send messages to an Amazon SQS queue using Spring Boot

In this article we’ll use Spring Boot to create an endpoint that can send messages to an Amazon Simple Queue Service (SQS) queue. In our application messages will consist of famous quotes. Amazon SQS and Spring Series This article is part of a series: Create a class for the quote message The following Data Transfer … Read more

Set up a Spring Boot app with Amazon SQS

In this article we’re going to create a Spring Boot project using Spring Initializr that will allow us to interact with Amazon SQS queues. Amazon SQS and Spring Series This article is part of a series: Create a new Spring Boot project using Spring Initializr Dependencies Open the pom.xml file to review the dependencies. The … Read more

Create a queue in Amazon SQS

In this article we’re going to create a queue in Amazon Simple Queue Service (SQS) using an AWS Stack template. Amazon SQS and Spring Series This article is part of a series: What is a message queue Message queues allow different parts of a system to communicate and process operations asynchronously. A producer sends a … Read more