Stratospheric
From Zero to Production with Spring Boot and AWS
From Zero to Production with Spring Boot and AWS. All you need to know to get a Spring Boot application into production with AWS. No previous AWS knowledge required.
Go to stratospheric.dev for a tour of the contents. (Spanish translation of Stratospheric)
About
About the Book
With Spring Boot being the leading framework for building applications in the JVM ecosystem and AWS the leading cloud platform, their combination is quite powerful.
This book will teach you everything you need to know to get your Spring Boot application running on AWS.
Throughout this book, we'll develop a web application that seamlessly integrates common AWS services such as SQS, S3, SNS, RDS, Cognito, and ECS using Spring Cloud AWS.
Not only will we focus on developing the application with Spring Boot but also take a detailed look at getting it ready for production. This includes a continuous deployment pipeline, infrastructure-as-code using CloudFormation and AWS CDK, deployment patterns, and monitoring.
The Stratospheric book will become your go-to resource for building production-ready applications with Spring Boot and AWS. It will prepare you for your next project in the cloud.
No previous AWS knowledge required.
Feedback
Packages
Pick Your Package
All packages include the ebook in the following formats: PDF, EPUB, and Web
Radiant Reader (eBook)
Minimum price
Suggested price$39.00$39.00
Lively Learner (eBook & Online Course)
Minimum price
Suggested price$269.00Get the Stratospheric eBook and Online Course in a Bundle
$269.00
- Lively Learner InstructionsImportant instructions on enrolling for the Stratospheric Online Course.
This book is also available in the following packages:
Mighty Member (eBook, Online Course, AI Prompt, private Q&A)
Get the Stratospheric eBook and online course, including access to a private Slack channel with the authors for personal Q&A.
- Mighty Member InstructionsImportant instructions on enrolling for the Stratospheric Online Course and getting access to the private community.
- Minimum price
- $499.00
- Suggested price
- $499.00
- Mighty Member Instructions
Author
About the Authors
Tom Hombergs
Tom is a software engineer by profession and by passion with more than a decade of experience in many different software projects for many different clients across various industries. In software projects, he takes on the roles of software developer, architect and coach, with a focus on the Java ecosystem.
He found that writing is the best way to learn, so he likes to dive deep into topics he encounters in his software projects to create texts that give structure to the chaotic world of software development. He regularly writes about software development on his blog at reflectoring.io and is an occasional speaker at conferences.

Episode 153
An Interview with Tom Hombergs
Björn Wilmsmann
Björn Wilmsmann is an independent IT consultant who helps companies transform their business into a digital business.
A longtime software entrepreneur, he’s interested in web apps and SaaS products. He designs and develops business solutions and enterprise applications for his clients.
Apart from helping companies in matters of software quality and improving the availability of and access to information through APIs, Björn provides hands-on training in technologies such as Angular and Spring Boot.
On his blog he writes about technology, software development, and the software business.
Find out more about Björn on bjoernkw.com.
Philip Riecks
Philip is an independent IT consultant from Germany, specializing in Java, Spring Boot, and AWS. He helps teams build confidence in developing, changing, and deploying their Java Spring Boot applications by making testing easier and more effective.
Under his slogan, "Testing Spring Boot Applications Made Simple," Philip shares practical recipes, tips, and tricks through his blog, online courses, and YouTube channel. His insights empower developers to create reliable, high-quality applications with less stress and more success.
When he’s not consulting, Philip is busy sharing his knowledge at rieckpil.de - drop by to learn more!

Episode 229
An Interview with Philip Riecks
Translations
Translations
Contents
Table of Contents
Introduction
- Why Spring Boot & AWS?
- Who Should Read This Book?
- Prerequisites for the Hands-On Examples
- What to Expect from This Book?
- Getting in Touch
- Resources
- About the Authors
- Part I: Deploying with AWS
1. Getting Warm with AWS
- Getting Ready
- Inspecting the “Hello World” Todo App
- Publishing the “Hello World” App to Docker Hub
- Getting Started with AWS Resources
- Inspecting the CloudFormation Templates
- Inspecting the Deployment Scripts
- Inspecting the AWS Console
2. An Overview of AWS Services
- AWS CloudFormation
- AWS Cloud Development Kit (CDK)
- Amazon CloudWatch
- Amazon Cognito
- Amazon DynamoDB
- Amazon Elastic Compute Cloud (EC2)
- Amazon Elastic Container Registry (ECR)
- Amazon Elastic Container Service (ECS)
- Amazon MQ
- Amazon Relational Database Service (RDS)
- Amazon Route 53
- Amazon Simple Email Service (SES)
- Amazon Simple Queue Service (SQS)
- Amazon Simple Storage Service (S3)
- Amazon Virtual Private Cloud (VPC)
- AWS Certificate Manager
- AWS Identity and Access Management (IAM)
- AWS Lambda
- AWS Secrets Manager
- AWS Systems Manager (SSM)
- Elastic Load Balancing (ELB)
3. Managing Permissions with IAM
- Users, Groups, and Roles
- Root Users vs. Individual Users
- Defining Policies
- Creating AWS Access Keys for Each User
- Managing IAM Resources Programmatically
- Best Practices for Managing Permissions with IAM
4. The Evolution of Automated Deployments
- An Anecdote about Manual Deployments
- Self-Service Deployments with the AWS Console
- Scriptable Deployments with the AWS CLI
- Declarative Deployments with CloudFormation
- Programmable Deployments with CDK
5. First Steps with CDK
- Creating Our First CDK App
- Deploying a Spring Boot App with a CDK Construct
- Why Not Stop Here?
6. Designing a Deployment Project with CDK
- The Big Picture
- Working with CDK
- The Docker Repository CDK App
- The Network CDK App
- The Service CDK App
- Playing with the CDK Apps
7. Building a Continuous Deployment Pipeline
- GitHub Actions Concepts
- Bootstrapping a New Environment
- Deploying a Shared Network
- Deploying an Application Environment
- Building a Continuous Deployment Workflow
- Supporting High-Frequency Deployments with Amazon SQS and AWS Lambda
Addendum: Configuring HTTPS and a Custom Domain with Route 53 and ELB
- Domain Name System (DNS)
- HTTPS and Transport Layer Security (TLS)
- Registering or Transferring a Domain
- Creating an SSL Certificate with CDK
- Creating an HTTPS Listener Using the Network App
- Associating a Custom Domain For the ELB
- Part II: Spring Boot & AWS
8. The Sample Todo Application
- Features
- Application Architecture
- Domain Model
- Skeleton Application Setup
9. Local Development
- The Challenges of Local Cloud Development
- LocalStack - Our Local AWS Cloud
- Local Amazon RDS & Amazon Cognito
- Bringing It All Together
10. Building User Registration and Login with Amazon Cognito
- What’s OAuth2?
- OAuth 2.0 Terminology
- OpenID Connect 1.0 (OIDC)
- Alternatives to OAuth2 & OpenID Connect
- Using Amazon Cognito for User Management
- Using Amazon Cognito as an Identity Provider With Spring Security
- Enabling Local Development
11. Connecting to a Database with Amazon RDS
- Introduction to AWS Relational Database Service (RDS)
- Setting up IAM Permissions
- Creating a Database CDK App
- Strategies for Initializing the Database Structure
- Configuring the Database in the Todo App
- Using the Database for Storing and Retrieving Todos
- Enabling Local Development
12. Sharing Todos with Amazon SQS and Amazon SES
- Using Amazon SQS for Asynchronous Workloads
- Sending Emails with Amazon SES
- Enabling Local Development
13. Push Notifications with Amazon MQ
- What Are Push Notifications Anyway?
- Push Notifications for Live Updates
- AWS Services for Implementing Push Notifications
- Setting up a Message Broker with CDK
- Implementing Push Notifications in the Todo App
- Enabling Local Development
14. Tracing User Actions with Amazon DynamoDB
- Use Case: Tracing User Actions
- Amazon RDS vs. Amazon DynamoDB
- Implementing User Tracing in the Todo App
- Enabling Local Development
- Part III: Production Readiness with AWS
15. Structured Logging with Amazon CloudWatch
- Logging with AWS
- CloudWatch Logging Terminology
- Status Quo: Logging Unstructured Text
- Logging and Querying Structured Data
16. Metrics with Amazon CloudWatch
- Introduction to Monitoring Metrics with Amazon CloudWatch
- Sending Metrics from AWS Services
- Sending Metrics from Our Spring Boot Application
- Monitoring Metrics with Amazon CloudWatch
17. Alerting with Amazon CloudWatch
- Introduction to Alerting with Amazon CloudWatch
- Creating Alarms with the AWS CDK
- Working and Living with Alarms and Incidents
18. Synthetic Monitoring with Amazon CloudWatch
- Introduction to CloudWatch Synthetics
- Recording a Canary Script for the Todo App
- Keeping it Simple
- Automating Canary Deployment with CDK
- Alerting on Canary Failure
- Closing Thoughts
Conquer the Cloud
- Additional Resources
- Appendix
- Technical GitHub Actions IAM User
- Deployment Guide
Changelog
Get the free sample chapters
Click the buttons to get the free sample in PDF or EPUB, or read the sample online here
The Leanpub 60 Day 100% Happiness Guarantee
Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.
Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.
You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!
So, there's no reason not to click the Add to Cart button, is there?
See full terms...
Earn $8 on a $10 Purchase, and $16 on a $20 Purchase
We pay 80% royalties on purchases of $7.99 or more, and 80% royalties minus a 50 cent flat fee on purchases between $0.99 and $7.98. You earn $8 on a $10 sale, and $16 on a $20 sale. So, if we sell 5000 non-refunded copies of your book for $20, you'll earn $80,000.
(Yes, some authors have already earned much more than that on Leanpub.)
In fact, authors have earned over $14 million writing, publishing and selling on Leanpub.
Learn more about writing on Leanpub
Free Updates. DRM Free.
If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).
Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.
Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.
Learn more about Leanpub's ebook formats and where to read them
Write and Publish on Leanpub
You can use Leanpub to easily write, publish and sell in-progress and completed ebooks and online courses!
Leanpub is a powerful platform for serious authors, combining a simple, elegant writing and publishing workflow with a store focused on selling in-progress ebooks.
Leanpub is a magical typewriter for authors: just write in plain text, and to publish your ebook, just click a button. (Or, if you are producing your ebook your own way, you can even upload your own PDF and/or EPUB files and then publish with one click!) It really is that easy.