Posts

Showing posts from December, 2020

Get up and running with the AWS Java SDK very fast

 Are you new to the AWS SDK for Java Version 2? You can get a Java application running very fast by following this quick start:  https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/get-started.html For all new projects that use the AWS SDK for Java, its strongly recommended that you use Version 2 as opposed to Version 1. To learn the differences, see What Is the AWS SDK for Java 2.x Migration Guide? . I work on AWS Java code that helps AWS developers. Included in this role is working   with AWS Services such as S3, DynamoDB, EC2, Lambda functions, and so on.   https://www.linkedin.com/in/scottmacdonald2010/

Creating an example messaging application using the AWS SDK for Java

Image
  You can create an AWS application that sends and retrieves messages by using the AWS SDK for Java and Amazon Simple Queue Service (Amazon SQS). Messages are stored in a first in, first out (FIFO) queue that ensures that the order of the messages is consistent. For example, the first message that's stored in the queue is the first message read from the queue. Note:  For more information about Amazon SQS, see  What is Amazon Simple Queue Service? In this tutorial, you create a Spring Boot application named AWS Messaging. The Spring Boot APIs are used to build a model, different views, and a controller. The following figure shows the example messaging application. To read this AWS tutorial, click  https://github.com/awsdocs/aws-doc-sdk-examples/tree/master/javav2/usecases/creating_message_application . I work on AWS Java code that helps AWS developers. Included in this role is working   with AWS Services such as S3, DynamoDB, EC2, Lambda functions, and so on. ...