Getting Started with AWS S3 and Spring Boot

Table Of Contents

In this article, we are going to explore AWS' Simple Storage Service (S3) together with Spring Boot to build a custom file-sharing application (just like in the good old days before Google Drive, Dropbox & co).

As we will learn, S3 is an extremely versatile and easy to use solution for a variety of use cases.

Check Out the Book!

Stratospheric - From Zero to Production with Spring Boot and AWS

This article gives only a first impression of what you can do with AWS.

If you want to go deeper and learn how to deploy a Spring Boot application to the AWS cloud and how to connect it to cloud services like RDS, Cognito, and SQS, make sure to check out the book Stratospheric - From Zero to Production with Spring Boot and AWS!

Example Code

This article is accompanied by a working code example on GitHub.

What is S3?

S3 stands for “simple storage service” and is an object store service hosted on Amazon Web Services (AWS) - but what does this exactly mean?

You are probably familiar with databases (of any kind). Let’s take Postgres for example. Postgres is a relational database, very well suited for storing structured data that has a schema that won’t change too much over its lifetime (e.g. financial transaction records). But what if we want to store more than just plain data? What if we want to store a picture, a PDF, a document, or a video?

It is technically possible to store those binary files in Postgres but object stores like S3 might be better suited for storing unstructured data.

Object Store vs. File Store

So we might ask ourselves, how is an object store different from a file store? Without going into the gory details, an object store is a repository that stores objects in a flat structure, similar to a key-value store.

As opposed to file-based storage where we have a hierarchy of files inside folders, inside folders,… the only thing we need to get an item out of an object store is the key of the object we want to retrieve. Additionally, we can provide metadata (data about data) that we attach to the object to further enrich it.

Understanding Basic S3 Concepts

S3 was one of the first services offered by AWS in 2006. Since then, a lot of features have been added but the core concepts of S3 are still Buckets and Objects.

Buckets

Buckets are containers of objects we want to store. An important thing to note here is that S3 requires the name of the bucket to be globally unique.

Objects

Objects are the actual things we are storing in S3. They are identified by a key which is a sequence of Unicode characters whose UTF-8 encoding is at most 1,024 bytes long.

Key Delimiter

By default, the “/” character gets special treatment if used in an object key. As written above, an object store does not use directories or folders but just keys. However, if we use a “/” in our object key, the AWS S3 console will render the object as if it was in a folder.

So, if our object has the key “foo/bar/test.json” the console will show a “folder” foo that contains a “folder” bar which contains the actual object. This key delimiter helps us to group our data into logical hierarchies.

Building an S3 Sample Application

Going forward we are going to explore the basic operations of S3. We do so by building our own file-sharing application (code on GitHub) that lets us share files with other people securely and, if we want, temporarily limited.

The sample application does include a lot of code that is not directly related to S3. The io.jgoerner.s3.adapter.out.s3 package is solely focused on the S3 specific bits.

The application’s README has all instructions needed to launch it. You don’t have to use the application to follow this article. It is merely meant as supportive means to explain certain S3 concepts.

Setting up AWS & AWS SDK

The first step is to set up an AWS account (if we haven’t already) and to configure our AWS credentials. Here is another article that explains this set up in great detail (only the initial configuration paragraphs are needed here, so feel free to come back after we are all set).

Spring Boot & S3

Our sample application is going to use the Spring Cloud for Amazon Web Services project. The main advantage over the official AWS SDK for Java is the convenience and head start we get by using the Spring project. A lot of common operations are wrapped into higher-level APIs that reduce the amount of boilerplate code.

Spring Cloud AWS gives us the org.springframework.cloud:spring-cloud-starter-aws dependency which bundles all the dependencies we need to communicate with S3.

Configuring Spring Boot

Just as with any other Spring Boot application, we can make use of an application.properties/application.yaml file to store our configuration:

## application.yaml
cloud:
  aws:
    region:
      static: eu-central-1
    stack:
      auto: false
    credentials:
      profile-name: dev

The snippet above does a few things:

  • region.static: we statically set our AWS region to be eu-central-1 (because that is the region that is closest to me).
  • stack.auto: this option would have enabled the automatic stack name detection of the application. As we don’t rely on the AWS CloudFormation service, we want to disable that setting (but here is a great article about automatic deployment with CloudFormation in case we want to learn more about it).
  • credentials.profile-name: we tell the application to use the credentials of the profile named dev (that’s how I named my AWS profile locally).

If we configured our credentials properly we should be able to start the application. However, due to a known issue we might want to add the following snippet to the configuration file to prevent noise in the application logs:

logging:
  level:
    com:
      amazonaws:
        util:
          EC2MetadataUtils: error

What the above configuration does is simply adjusting the log level for the class com.amazonaws.util.EC2MetadataUtils to error so we don’t see the warning logs anymore.

Amazon S3 Client

The core class to handle the communication with S3 is the com.amazonaws.services.s3.AmazonS3Client. Thanks to Spring Boot’s dependency injection we can simply use the constructor to get a reference to the client:

public class S3Repository {

  private final AmazonS3Client s3Client;

  public S3Repository(AmazonS3Client s3Client) {
    this.s3Client = s3Client;
  }
  
  // other repository methods

}

Creating a Bucket

Before we can upload any file, we have to have a bucket. Creating a bucket is quite easy:

s3Client.createBucket("my-awesome-bucket");

We simply use the createBucket() method and specify the name of the bucket. This sends the request to S3 to create a new bucket for us. As this request is going to be handled asynchronously, the client gives us the way to block our application until that bucket exists:

// optionally block to wait until creation is finished
s3Client
  .waiters()
  .bucketExists()
  .run(
    new WaiterParameters<>(
      new HeadBucketRequest("my-awesome-bucket")
    )
  );

We simply use the client’s waiters() method and run a HeadBucketRequest (similar to the HTTP head method).

As mentioned before, the name of the S3 bucket has to be globally unique, so often I end up with rather long or non-human readable bucket names. Unfortunately, we can’t attach any metadata to the bucket (as opposed to objects). Therefore, the sample application uses a little lookup table to map human and UI friendly names to globally unique ones. This is not required when working with S3, just something to improve the usability.

Creating a Bucket in the Sample Application

  1. Navigate to the Spaces section
  2. Click on New Space
  3. Enter the name and click Submit
  4. A message should pop up to indicate success

Uploading a File

Now that our bucket is created we are all set to upload a file of our choice. The client provides us with the overloaded putObject() method. Besides the fine-grained PutObjectRequest we can use the function in three ways:

// String-based
String content = ...;
s3Client.putObject("my-bucket", "my-key", content);

// File-based
File file = ...;
s3Client.putObject("my-bucket", "my-key", file);

// InputStream-based
InputStream input = ...;
Map<String, String> metadata = ...;
s3Client.putObject("my-bucket", "my-key", input, metadata);

In the simplest case, we can directly write the content of a String into an object. We can also put a File into a bucket. Or we can use an InputStream.

Only the last option gives us the possibility to directly attach metadata in the form of a Map<String, String> to the uploaded object.

In our sample application, we attach a human-readable name to the object while making the key random to avoid collisions within the bucket - so we don’t need any additional lookup tables.

Object metadata can be quite useful, but we should note that S3 does not give us the possibility to directly search an object by metadata. If we are looking for a specific metadata key (e.g. department being set to Engineering) we have to touch all objects in our bucket and filter based on that property.

There are some upper boundaries worth mentioning when it comes to the size of the uploaded object. At the time of writing this article, we can upload an item of max 5GB within a single operation as we did with putObject(). If we use the client’s initiateMultipartUpload() method, it is possible to upload an object of max 5TB through a Multipart upload.

Uploading a File in the Sample Application

  1. Navigate to the Spaces section
  2. Select Details on the target Space/Bucket
  3. Click on Upload File
  4. Pick the file, provide a name and click Submit
  5. A message should pop up to indicate success

Listing Files

Once we have uploaded our files, we want to be able to retrieve them and list the content of a bucket. The simplest way to do so is the client’s listObjectV2() method:

s3Client
  .listObjectsV2("my-awesome-bucket")
  .getObjectSummaries();

Similar to concepts of the JSON API, the object keys are not directly returned but wrapped in a payload that also contains other useful information about the request (e.g. such as pagination information). We get the object details by using the getObjectSummaries() method.

What does V2 mean?

AWS released version 2 of their AWS SDK for Java in late 2018. Some of the client's methods offer both versions of the function, hence the V2 suffix of the listObjectsV2() method.

As our sample application doesn’t use the S3ObjectSummary model that the client provides us, we map those results into our domain model:

s3Client.listObjectsV2(bucket).getObjectSummaries()
  .stream()
  .map(S3ObjectSummary::getKey)
  .map(key -> mapS3ToObject(bucket, key)) // custom mapping function
  .collect(Collectors.toList());

Thanks to Java’s stream() we can simply append the transformation to the request.

Another noteworthy aspect is the handling of buckets that contain more than 1000 objects. By default, the client might only return a fraction, requiring pagination. However, the newer V2 SDK provides higher-level methods, that follow an autopagination approach.

Listing all Objects in the Sample Application

  1. Navigate to the Spaces section
  2. Select Details on the target Space/Bucket
  3. You see a list of all objects stored in the bucket

Making a File Public

Every object in S3 has a URL that can be used to access that object. The URL follows a specific pattern of bucket name, region, and object key. Instead of manually creating this URL, we can use the getUrl() method, providing a bucket name and an object key:

s3Client
  .getUrl("my-awesome-bucket", "some-key");

Depending on the region we are in, this yields an URL like the following (given that we are in the eu-central-1 region):

https://my-awesome-bucket.s3.eu-central-1.amazonaws.com/some-key

Getting an Object's URL in the Sample Application

  1. Navigate to the Spaces section
  2. Select Details on the target Space/Bucket
  3. Select Download on the target object
  4. The object's URL shall be opened in a new tab

When accessing this URL directly after uploading an object we should get an Access Denied error, since all objects are private by default:

<Error>
  <Code>AccessDenied</Code>
  <Message>Access Denied</Message>
  <RequestId>...</RequestId>
  <HostId>...</HostId>
</Error>

As our application is all about sharing things, we do want those objects to be publicly available though.

Therefore, we are going to alter the object’s Access Control List (ACL).

An ACL is a list of access rules. Each of those rules contains the information of a grantee (who) and a permission (what). By default, only the bucket owner (grantee) has full control (permission) but we can easily change that.

We can make objects public by altering their ACL like the following:

s3Client
  .setObjectAcl(
    "my-awesome-bucket",
    "some-key",
    CannedAccessControlList.PublicRead
  );

We are using the the clients' setObjectAcl() in combination with the high level CannedAccessControlList.PublicRead. The PublicRead is a prepared rule, that allows anyone (grantee) to have read access (permission) on the object.

Making an Object Public in the Sample Application

  1. Navigate to the Spaces section
  2. Select Details on the target Space/Bucket
  3. Select Make Public on the target object
  4. A message should pop up to indicate success

If we reload the page that gave us an Access Denied error again, we will now be prompted to download the file.

Making a File Private

Once the recipient downloaded the file, we might want to revoke the public access. This can be done following the same logic and methods, with slightly different parameters:

s3Client
  .setObjectAcl(
    "my-awesome-bucket",
    "some-key",
    CannedAccessControlList.BucketOwnerFullControl
  );

The above snippet sets the object’s ACL so that only the bucket owner (grantee) has full control (permission), which is the default setting.

Making an Object Private in the Sample Application

  1. Navigate to the Spaces section
  2. Select Details on the target Space/Bucket
  3. Select Make Private on the target object
  4. A message should pop up to indicate success

Deleting Files & Buckets

You might not want to make the file private again, because once it was downloaded there is no need to keep it.

The client also gives us the option to easily delete an object from a bucket:

s3Client
  .deleteObject("my-awesome-bucket", "some-key");

The deleteObject() method simply takes the name of the bucket and the key of the object.

Deleting an Object in the Sample Application

  1. Navigate to the Spaces section
  2. Select Details on the target Space/Bucket
  3. Select Delete on the target object
  4. The list of objects should reload without the deleted one

One noteworthy aspect around deletion is that we can’t delete non-empty buckets. So if we want to get rid of a complete bucket, we first have to make sure that we delete all the items first.

Deleting a Bucket in the Sample Application

  1. Navigate to the Spaces section
  2. Select Delete on the target Space/Bucket
  3. The list of buckets should reload without the deleted one

Using Pre-Signed URLs

Reflecting on our approach, we did achieve what we wanted to: making files easily shareable temporarily. However, there are some features that S3 offers which greatly improve the way we share those files.

Our current approach to making a file shareable contains quite a lot of steps:

  1. Update ACL to make the file public
  2. Wait until the file was downloaded
  3. Update ACL to make the file private again

What if we forget to make the file private again?

S3 offers a concept called “pre-signed URLs”. A pre-signed URL is the link to our object containing an access token, that allows for a temporary download (or upload). We can easily create such a pre-signed URL by specifying the bucket, the object, and the expiration date:

// duration measured in seconds
var date = new Date(new Date().getTime() + duration * 1000);

s3Client
  .generatePresignedUrl(bucket, key, date);

The client gives us the generatePresignedUrl() method, which accepts a java.util.Date as the expiration parameter. So if we think of a certain duration as opposed to a concrete expiration date, we have to convert that duration into a Date.

In the above snippet, we do so by simply multiplying the duration (in seconds) by 1000 (to convert it to milliseconds) and add that to the current time (in UNIX milliseconds).

The official documentation has some more information around the limitations of pre-signed URLs.

Generating a Pre-Signed URL in the Sample Application

  1. Navigate to the Spaces section
  2. Select Details on the target Space/Bucket
  3. Select Magic Link on the target object
  4. A message should pop up, containing a pre-signed URL for that object (which is valid for 15 minutes)

Using Bucket Lifecycle Policies

Another improvement we can implement is the deletion of the files. Even though the AWS free tier gives us 5GB of S3 storage space before we have to pay, we might want to get rid of old files we have shared already. Similar to the visibility of objects, we can manually delete objects, but wouldn’t it be more convenient if they get automatically cleaned up?

AWS gives us multiple ways to automatically delete objects from a bucket, however we’ll use S3’s concept of Object Life Cycle rules. An object life cycle rule basically contains the information when to do what with the object:

// delete files a week after upload
s3Client
  .setBucketLifecycleConfiguration(
    "my-awesome-bucket",
    new BucketLifecycleConfiguration()
      .withRules(
        new BucketLifecycleConfiguration.Rule()
          .withId("custom-expiration-id")
          .withFilter(new LifecycleFilter())
          .withStatus(BucketLifecycleConfiguration.ENABLED)
          .withExpirationInDays(7)
      )
  );

We use the client’s setBucketLifecycleConfiguration() method, given the bucket’s name and the desired configuration. The configuration above consists of a single rule, having:

  • an id to make the rule uniquely identifiable
  • a default LifecycleFilter, so this rule applies to all objects in the bucket
  • a status of being ENABLED, so as soon as this rule is created, it is effective
  • an expiration of seven days, so after a week the object gets deleted

It shall be noted that the snippet above overrides the old lifecycle configuration. That is ok for our use case but we might want to fetch the existing rules first and upload the combination of old and new rules.

Setting a Bucket's Expiration in the Sample Application

  1. Navigate to the Spaces section
  2. Select Make Temporary on the target Space/Bucket
  3. A message should pop up to indicate success

Lifecycle rules are very versatile, as we can use the filter to only apply the rule to objects with a certain key prefix or carry out other actions like archiving of objects.

Conclusion

In this article, we’ve learned the basics of AWS' Simple Storage Service (S3) and how to use Spring Boot and the Spring Cloud project to get started with it.

We used S3 to build a custom file-sharing application (code on GitHub), that lets us upload & share our files in different ways. But it shall be said, that S3 is way more versatile, often also quoted to be the backbone of the internet.

As this is a getting started article, we did not touch other topics like storage tiers, object versioning, or static content hosting. So I can only recommend you get your hands dirty, and play around with S3!

Check Out the Book!

Stratospheric - From Zero to Production with Spring Boot and AWS

This article gives only a first impression of what you can do with AWS.

If you want to go deeper and learn how to deploy a Spring Boot application to the AWS cloud and how to connect it to cloud services like RDS, Cognito, and SQS, make sure to check out the book Stratospheric - From Zero to Production with Spring Boot and AWS!

Written By:

Joshua Görner

Written By:

Joshua Görner

Product Engineer, Online Instructor, Open Source Enthusiast and Father :-)

Recent Posts

Understanding Null Safety in Kotlin

One of the standout features that sets Kotlin apart is its robust approach to null safety. Null safety is a critical aspect of programming languages, aiming to eliminate the notorious null pointer exceptions that often plague developers.

Read more

Merge Sort in Kotlin

Sorting is a fundamental operation that plays a crucial role in various applications. Among the many sorting algorithms, merge sort stands out for its efficiency and simplicity.

Read more

Extension Functions in Kotlin

One of Kotlin’s standout features is extension functions, a mechanism that empowers developers to enhance existing classes without modifying their source code.

Read more